我有一个包含多个插入语句(1000 +)的.sql文件,我想将此文件中的语句运行到我的Oracle数据库中。
现在,我使用带有 odbc 的 python 通过以下方式连接到我的数据库:
import pyodbc
from ConfigParser import SafeConfigParser
def db_call(self, cfgFile, sql):
parser = SafeConfigParser()
parser.read(cfgFile)
dsn = parser.get('odbc', 'dsn')
uid = parser.get('odbc', 'user')
pwd = parser.get('odbc', 'pass')
try:
con = pyodbc.connect('DSN=' + dsn + ';PWD=' + pwd + ';UID=' + pwd)
cur = con.cursor()
cur.execute(sql)
con.commit()
except pyodbc.DatabaseError, e:
print 'Error %s' % e
sys.exit(1)
finally:
if con and cur:
cur.close()
con.close()
with open('theFile.sql','r') as f:
cfgFile = 'c:\dbinfo\connectionInfo.cfg'
#here goes the code to insert the contents into the database using db_call_many
statements = f.read()
db_call(cfgFile,statements)
但是当我运行它时,我收到以下错误:
pyodbc.Error: ('HY000', '[HY000] [Oracle][ODBC][Ora]ORA-00911: invalid charactern (911) (SQLExecDirectW)')
但文件的所有内容只是:
INSERT INTO table (movie,genre) VALUES ('moviename','horror');
编辑
在db_db_call(cfgFile,语句)之前添加print '<{}>'.format(statements)
,我得到结果(100+):
<INSERT INTO table (movie,genre) VALUES ('moviename','horror');INSERT INTO table (movie,genre) VALUES ('moviename_b','horror');INSERT INTO table (movie,genre) VALUES ('moviename_c','horror');>
感谢您花时间阅读本文。
现在它得到了一些澄清 - 你有很多单独的SQL语句,例如INSERT INTO table (movie,genre) VALUES ('moviename','horror');
然后,您实际上比当前状态cur.executescript()
(我不知道pyodbc
是否支持DB API的那部分,但是任何原因,您不能只对数据库本身执行执行吗?
使用 read() 函数读取文件时,也会读取文件末尾的结束行 ()。我认为你应该使用db_call(cfgFile,statement[:-1])来消除结束行。