B4J Question SQlite function call, in documentation

B4JExplorer

Active Member
Licensed User
Longtime User
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:


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:

B4JExplorer

Active Member
Licensed User
Longtime User
Upvote 0
Top