我正在尝试将从文件中读取的字符串插入到sqlite
Python 中的数据库中。字符串具有空格(换行符、制表符和空格),并且还具有单引号或双引号的外观。这是我尝试这样做的方法:
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
# Create table
c.execute('''CREATE TABLE test
(a text, b text)''')
f = open("foo", "w")
f.write("hello\n\'world\'\n")
f.close()
testfield = open("foo").read()
# Insert a row of data
c.execute("INSERT INTO test VALUES ('%s', 'bar')" %(testfield))
# Save (commit) the changes
conn.commit()
我发现这失败并出现错误:
c.execute("INSERT INTO test VALUES ('%s', 'bar')" %(testfield))
sqlite3.OperationalError: near "world": syntax error
我怎样才能做到这一点?在插入数据库之前是否需要对字符串进行转义,如果需要,如何转义?谢谢。