sam*_*per 10 python sqlite bash command-line-interface
SQLite 在C API中提供了数据更改通知回调.这些回调可以从SQLite CLI,Bash还是Python中使用?
如果是这样,怎么样?
Aya*_*Aya 16
可以从SQLite CLI中使用这些回调吗...
通过SQLite源代码阅读,它看起来不像在CLI源代码中的任何地方使用该函数,所以我怀疑你可以通过CLI来实现.
......或者来自Bash ......
不确定你是什么意思.
......还是来自Python?
它不是通过标准sqlite3模块公开的,但您可以将它与ctypes模块一起使用.
如果是这样,怎么样?
这是一个通过ctypes... 快速使用它的简单例子
from ctypes import *
# Define some symbols
SQLITE_DELETE = 9
SQLITE_INSERT = 18
SQLITE_UPDATE = 23
# Define our callback function
#
# 'user_data' will be the third param passed to sqlite3_update_hook
# 'operation' will be one of: SQLITE_DELETE, SQLITE_INSERT, or SQLITE_UPDATE
# 'db name' will be the name of the affected database
# 'table_name' will be the name of the affected table
# 'row_id' will be the ID of the affected row
def callback(user_data, operation, db_name, table_name, row_id):
if operation == SQLITE_DELETE:
optext = 'Deleted row'
elif operation == SQLITE_INSERT:
optext = 'Inserted row'
elif operation == SQLITE_UPDATE:
optext = 'Updated row'
else:
optext = 'Unknown operation on row'
s = '%s %ld of table "%s" in database "%s"' % (optext, row_id, table_name, db_name)
print s
# Translate into a ctypes callback
c_callback = CFUNCTYPE(c_void_p, c_void_p, c_int, c_char_p, c_char_p, c_int64)(callback)
# Load sqlite3
dll = CDLL('libsqlite3.so')
# Holds a pointer to the database connection
db = c_void_p()
# Open a connection to 'test.db'
dll.sqlite3_open('test.db', byref(db))
# Register callback
dll.sqlite3_update_hook(db, c_callback, None)
# Create a variable to hold error messages
err = c_char_p()
# Now execute some SQL
dll.sqlite3_exec(db, 'create table foo (id int, name varchar(255))', None, None, byref(err))
if err:
print err.value
dll.sqlite3_exec(db, 'insert into foo values (1, "Bob")', None, None, byref(err))
if err:
print err.value
Run Code Online (Sandbox Code Playgroud)
......打印出......
Inserted row 1 of table "foo" in database "main"
Run Code Online (Sandbox Code Playgroud)
......第一次运行......
table foo already exists
Inserted row 2 of table "foo" in database "main"
Run Code Online (Sandbox Code Playgroud)
......第二轮.
| 归档时间: |
|
| 查看次数: |
4323 次 |
| 最近记录: |