Hey guys! According to "Persistent Loadable Extensions” topic on https://www.sqlite.org/loadext.html if the initialization procedure returns SQLITE_OK_LOAD_PERMANENTLY (256) the extension should persist on the database file instead of just belong to the current connection.
So I’ve downloaded the extension-functions.c and before compile that I’ve changed the the return of sqlite3_extension_init from 0 to 256. But still, my extension just exists on the current connection. Did I misunderstand the concept? Am I doing something wrong? Thanks Guys! _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

