Sqlite3 C/c++, Get The Table Names Involved Int An Aggregate Query
I am using sqlite in a C++ project and I would like to be able to get the table names involved in a query. Ex: SELECT * FROM Employee should return Employee Now I use successfull
Solution 1:
An authorizer callback allows you to detect which tables are actually accessed by a query.
Post a Comment for "Sqlite3 C/c++, Get The Table Names Involved Int An Aggregate Query"