Hi All,
For those of us that use SQLite mostly in-memory. Our context is mostly not
{sqlite3*} database pointer, it is {sqlite3_stmt*}.
Current API?
int sqlite3_set_authorizer(
sqlite3*,
int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
void *pUserData
);
Can we add the following API in the future?
int sqlite3_stmt_set_authorizer(
sqlite3_stmt*,
int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
void *pUserData
);
I have a user interface RPC for my application that configures and gets
status from my in-memory server database.
I like to be able to limit that activity. Any body else would like to see
this feature?
I hope Dr. Hipp reads this email.
Thanks,
-Alex
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users