For those that use the official plugin and wish to migrate to this plugin without replacing every function in their code. Adding the following code to be executed before anything else (I.e. the top of the first executed script) should be enough to have something working:
Code: [Select]
Same goes the other way around by reversing the function names. Unless you've used functions specific to this plugin.
ConnectSQL <- SQLite_Open;
DisconnectSQL <- SQLite_Close;
QuerySQL <- SQLite_Query;
GetSQLNextRow <- SQLite_NextRow;
GetSQLColumnCount <- SQLite_ColumnCount;
GetSQLColumnData <- SQLite_ColumnData;
FreeSQLQuery <- SQLite_Release;
escapeSQLString <- SQLite_Escape;
Same goes the other way around by reversing the function names. Unless you've used functions specific to this plugin.