1

我需要一种在命令行界面工具 sqlite3 中访问在我的 python3 应用程序中的内存(':memory:')中创建的数据库的方法。这个想法是为用户提供标准 sqlite3 工具的便利,而不是在 python 本身中重新实现 sqlite shell。

同样,目标是:

在内存中的python程序中打开的数据库->在sqlite3 cli工具中编辑/处理数据库->将(可能)修改的数据库移回我的python程序。

我试图:

def sqlite_cli(self):
    # Spawn the original sqlite3 cli interface
    # Dump the database in a named temporary file. Read it back into
    # memory. At close() the tempfile will be erased.
    with tempfile.NamedTemporaryFile(delete=True) as tf:
        for line in self.connection.iterdump():
            tf.write(bytes(line, 'ascii'))

        # Work with the database through sqlite3
        subprocess.call(['sqlite3', '-init', tf.name])

        # Read the potentially modified database
        # !!!!!!!!!!!!!!!!
        # Here happens the logic gap: The sqlite3 tool doesn't 
        # save modifications to the file opend as the -init argument.
        # How can I save the modifications done within sqlite3 as a 
        # sql text file ready to be read back into the app?!
        tf.seek(0)
        edited_db = tf.read()

        # Delete all tables residing in memory
        try:
            for t in ACCMAN_TABLES:
                self.cursor.execute('DROP TABLE IF EXISTS %s' % t)
            self.connection.commit()
            # Add the (maybe) edited one
            self.cursor.executescript(edited_db.decode(encoding='utf-8'))
            self.connection.commit()
        except sqlite3.Error as e:
            logger.error("sqlite_cli(): %s" % e.args[0])

        tf.close()

在这种情况下,我需要一种方法来保存对使用sqlite -init 文件名打开的数据库所做的所有修改,无论是文件系统上的 sql 格式还是二进制格式(正常的...)。

编辑:一种解决方案是让用户在数据库上做他的事情,然后在他结束会话之前(为 .q .quit .exit 捕获标准输入),我可以发送一个中介

.output outfile.sql
.dump
.quit

在文件系统上重定向整个数据库(以及它的修改!),然后将创建的文件读回 python 应用程序。但这太丑陋和不雅...

4

1 回答 1

0

我认为您不会喜欢这个答案,但我会考虑将您的应用程序中的“模型”编写为能够接收 xml-rpc 调用的“服务器”。这样,您的“控制器”(以及外部控制器)可以访问数据库并执行您允许他们执行的任何操作。将类的方法公开为 XML-RPC 服务器非常容易。请参阅http://docs.python.org/2/library/xmlrpclib.html?highlight=xmlrpc#xmlrpclib

于 2013-08-23T20:46:36.467 回答