婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁(yè) > 知識(shí)庫(kù) > python 插入Null值數(shù)據(jù)到Postgresql的操作

python 插入Null值數(shù)據(jù)到Postgresql的操作

熱門標(biāo)簽:400電話 申請(qǐng) 條件 電銷機(jī)器人 金倫通信 汕頭電商外呼系統(tǒng)供應(yīng)商 crm電銷機(jī)器人 鄭州智能外呼系統(tǒng)中心 云南地圖標(biāo)注 南京crm外呼系統(tǒng)排名 北京外呼電銷機(jī)器人招商 賓館能在百度地圖標(biāo)注嗎

數(shù)據(jù)庫(kù)中最好插入Null值。

在python中,暫時(shí)沒(méi)找到通過(guò)sql語(yǔ)句的方式插入Null值。

推薦使用輪子的方法

def insert_sample_data(self, values): # added self since you are referencing it below
 with self.con.cursor() as cur:
  sql = "insert into sampletable values (%s, %s, %s)" # Use %s for parameters
  cur.executemany(sql, values) # Pass the list of tuples directly
  self.con.commit()
 
list1 = [(1100, 'abc', '{"1209": "Y", "1210": "Y"}'), (1100, 'abc', None)]
self.insert_sample_data(list1) # pass the list directly

補(bǔ)充:python連接數(shù)據(jù)庫(kù)插入數(shù)據(jù)庫(kù)數(shù)據(jù)所碰到的坑

Python中插入數(shù)據(jù)時(shí)執(zhí)行后,沒(méi)有報(bào)任何錯(cuò)誤,但數(shù)據(jù)庫(kù)中并沒(méi)有出現(xiàn)新添加的數(shù)據(jù)

原因:

缺少提交操作。

解決方案:

Python操作數(shù)據(jù)庫(kù)時(shí),如果對(duì)數(shù)據(jù)表進(jìn)行修改/刪除/添加等控制操作,系統(tǒng)會(huì)將操作保存在內(nèi)存,只有執(zhí)行commit(),才會(huì)將操作提交到數(shù)據(jù)庫(kù)。

但是總有你想不到的坑代碼如下:

import pymysql 
class Connection: 
 def __init__(self):
  self.host = 'localhost'
  self.user = 'nameit'
  self.password = 'YES'
  self.port = 3306
  self.db = 'Xomai' 
 
 def connection(self): 
  db = pymysql.connect(host=self.host, user=self.user, password=self.password, port=self.port, db=self.db)
  cur = db.cursor()
  return db, cur
 
 def create_table(self, cur): 
  sql = """CREATE TABLE `activity_feedback` (
     `id` bigint(20) NOT NULL AUTO_INCREMENT,
     `inst_id` bigint(20) DEFAULT NULL COMMENT 'ID',
     `broadcast_id` bigint(20) DEFAULT NULL COMMENT '你好',
     `student_id` bigint(20) DEFAULT NULL COMMENT '學(xué)生ID',
     `content` varchar(1024) DEFAULT NULL COMMENT '學(xué)員內(nèi)容',
     `comment` varchar(255) DEFAULT NULL COMMENT '注釋',
     `gmt_create` datetime DEFAULT NULL,
     `gmt_modify` datetime DEFAULT NULL,
     PRIMARY KEY (`id`),
     KEY `activity_feedback_student_id_index` (`student_id`)
    ) ENGINE = InnoDB AUTO_INCREMENT = 1050 DEFAULT CHARSET = utf8mb4 COMMENT = '學(xué)員表'"""
  cur.execute(sql)
 def insert(self, id, inst_id, broadcast_id, student_id, content, comment, gmt_create, gmt_modify):
  sql = """INSERT INTO `activity_feedback` (
     `id`, `inst_id`, `broadcast_id`, `student_id`, `content`, `comment`, `gmt_create`, `gmt_modify`)
     VALUES ('{}','{}','{}','{}','{}','{}','{}','{}')""".format(id, inst_id, broadcast_id, student_id, content, comment, gmt_create, gmt_modify)
  try:
   self.connection()[1].execute(sql)
   self.connection()[0].commit()
  except:
   self.connection()[0].rollback()
if __name__ == '__main__':
 conn = Connection()
 conn.insert(123, 123, 324, 3451, 'ajdf', 'sdfs', '2013-2-5', '2014-3-4')

咋一看好像也有commit呀,怎么一直在數(shù)據(jù)庫(kù)沒(méi)有,再仔細(xì)看看

  try:
   self.connection()[1].execute(sql)
   self.connection()[0].commit()
  except:
   self.connection()[0].rollback()

connection()調(diào)用方法方法返回的對(duì)象是同一個(gè)嗎?

并不是,心累,搞了半天,只怪自己還太嫩。

正確寫法:

  try:
   cons = self.connection()
   cons[1].execute(sql)
   cons[0].commit()
   cons[0].close()
  except:
   cons[0].rollback()

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • 利用python為PostgreSQL的表自動(dòng)添加分區(qū)
  • Python操作PostgreSql數(shù)據(jù)庫(kù)的方法(基本的增刪改查)
  • Python 操作 PostgreSQL 數(shù)據(jù)庫(kù)示例【連接、增刪改查等】
  • python連接PostgreSQL過(guò)程解析
  • python 兩個(gè)數(shù)據(jù)庫(kù)postgresql對(duì)比
  • Python 中創(chuàng)建 PostgreSQL 數(shù)據(jù)庫(kù)連接池

標(biāo)簽:西寧 懷化 浙江 石家莊 昆明 錫林郭勒盟 梅州 文山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python 插入Null值數(shù)據(jù)到Postgresql的操作》,本文關(guān)鍵詞  python,插入,Null,值,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python 插入Null值數(shù)據(jù)到Postgresql的操作》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于python 插入Null值數(shù)據(jù)到Postgresql的操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 鹤庆县| 芦溪县| 紫金县| 万源市| 两当县| 南和县| 平谷区| 通化市| 南川市| 宁安市| 望奎县| 东平县| 夏河县| 平罗县| 抚远县| 玉山县| 印江| 曲沃县| 鄂尔多斯市| 北海市| 贺州市| 九江市| 开远市| 江安县| 周宁县| 德昌县| 阿拉善盟| 体育| 通榆县| 泰州市| 梁山县| 丰原市| 大港区| 涟源市| 台南市| 和硕县| 富民县| 廊坊市| 马公市| 无棣县| 始兴县|