PYODBC 将数据插入日期时间列会产生格式错误 table

PYODBC Inserting data into datetime column produces incorrectly formatted table

我目前正在编写一个程序,它将从 excel 电子表格中获取数据并将其插入我在程序中创建的 sql 服务器 table。

为了让整个程序正常工作,我之前将日期时间列指定为 nvarchar(250),但是当我将其更改为日期时间时,数据输入到错误的列中?其余代码也适用于 nvarchar 数据类型。

import pyodbc

connection_string = r'connection_string'
data = 'file_path'

conn = pyodbc.connect(connection_string)
cur = conn.cursor()

createtable = """
create table table1(
    ID Int NULL,
    Date datetime(250) NULL,
    City nvarchar(250) NULL,
    Country nvarchar(250) NULL,
    Image nvarchar(250) NULL,
    Length nvarchar(250) NULL,
    Date_Of_capture nvarchar(250) NULL,
    Comments nvarchar(1000) NULL
    )"""

truncatetable = """truncate table table1"""

with open(data) as file:
    file.readline()
    lines = file.readlines()

if cur.tables(table="table1").fetchone():
    cur.execute(truncatetable)
    for line in lines:
        cols = line.split(',')
        cols = line.replace("'", "")
        sql = "INSERT INTO table1 VALUES({}, '{}', '{}', '{}', '{}', '{}','{}','{}')".format(cols[0], cols[1],cols[2], cols[3], cols[4], cols[5], cols[6], cols[7])
        cur.execute(sql)
else:
    cur.execute(createtable)
    for line in lines:
        cols = line.split(',')
        sql = "INSERT INTO table1 VALUES({}, '{}', '{}', '{}', '{}', '{}','{}','{}')".format(cols[0], cols[1],cols[2], cols[3], cols[4], cols[5], cols[6], cols[7])
        cur.execute(sql)

conn.commit()

conn.close()

我希望日期列显示为日期时间数据类型,同时包含在一列中,但是它更改了 tables 以便所有列都不正确并且日期的每个数字都在一个不同的列?

非常感谢任何帮助。谢谢。

考虑以下最佳做法:

  • 始终在 INSERT INTO 甚至 SELECT 子句中指定列,特别是使用 INSERT INTO myTable (Col1, Col2, Col3, ...) 这有助于提高可读性和可维护性;

  • 将参数化与准备好的语句一起使用,以避免引号转义或其他重要项目中的类型转换。此外,Python 允许将元组传递到 cursor.execute()params 参数中,而无需列出每个单独的列。

  • 使用 Python 的 csv 库遍历带有列表或字典的 CSV 文件以正确对齐并避免内存密集型 .readlines() 调用;

  • CREATE TABLETRUNCATE 合并到一个 SQL 调用中以避免 if 条件语句与游标提取调用。

查看调整后的代码。

import csv
...

action_query = """
    IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = N'mytable')
      BEGIN
        TRUNCATE TABLE table1
      END
    ELSE
      BEGIN
        CREATE TABLE table1(
           ID Int NULL,
           Date datetime NULL,
           City nvarchar(250) NULL,
           Country nvarchar(250) NULL,
           Image nvarchar(250) NULL,
           Length nvarchar(250) NULL,
           Date_Of_capture nvarchar(250) NULL,
           Comments nvarchar(1000) NULL
        )
      END
""")

cur.execute(action_query)
conn.commit()

# PREPARED STATEMENT
append_query = """INSERT INTO mytable (ID, Date, City, Country, Image, 
                                       Length, Date_Of_capture, Comments)
                  VALUES (?, ?, ?, ?, ?, ?, ?, ?)
               """

# ITERATE THROUGH CSV AND INSERT ROWS
with open(mydatafile) as f:
    next(f) # SKIP HEADERS
    reader = csv.reader(f)

    for r in reader:
        # RUN APPEND AND BIND PARAMS
        cur.execute(append_query, params=r)
        conn.commit()

cur.close()
conn.close()