我想使用sqlite3.Connection.backup()
将import Collins_find_largest #file name to be imported
def main():
number_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print('List of numbers:\n', number_list, sep ='')
print("largest Number in the list is: ", \
Collins_find_largest.find_largest(number_list))
main()
数据库sqlite3
备份到内存数据库existing_db.db
中吗? :memory:
在SQLite 3.6.11或更高版本中可用。 3.7版中的新功能。如果我运行以下代码
backup()
我收到错误import sqlite3
source = sqlite3.connect('existing_db.db')
dest = sqlite3.connect(':memory:')
source.backup(dest)
。如何使AttributeError: 'sqlite3.Connection' object has no attribute 'backup'
工作?我的设置是Ubuntu 18.04。
backup()