Hi,
There seems to be a mispelling of a function call, at
https://www.b4x.com/b4j/help/jsql.html#sql_initializesqlite
The example uses the standard Sql Initialize function, rather than the Sqlite specific one:
The number of parameters for the InitializeSQLite() function is correct. But it's wrong for the initialization function that's actually used above. It should be InitializeSQLite(), not Initialize().
There seems to be a mispelling of a function call, at
https://www.b4x.com/b4j/help/jsql.html#sql_initializesqlite
The example uses the standard Sql Initialize function, rather than the Sqlite specific one:
B4X:
Dim SQL1 As SQL
SQL1.Initialize(File.DirApp, "MyDb.db", True)
The number of parameters for the InitializeSQLite() function is correct. But it's wrong for the initialization function that's actually used above. It should be InitializeSQLite(), not Initialize().
Last edited: