I have created a database sqlite in vb 2015 with that code:
dim cmd as new sqlite.sqliconnection
cmd=new sqlite.sqlite.rconnection("Data Source = vetesmart.db;Password = "abcd")
Once the database file is on my android phone
I would like to read it with my B4A app.
How can i use db.initialize(databasedir,databasename,false)
Can I use
dim PW as string = "abcd"
db.initialize(DatabaseDir,"vetesmart.db;Password = " & PW & ";",false)
dim cmd as new sqlite.sqliconnection
cmd=new sqlite.sqlite.rconnection("Data Source = vetesmart.db;Password = "abcd")
Once the database file is on my android phone
I would like to read it with my B4A app.
How can i use db.initialize(databasedir,databasename,false)
Can I use
dim PW as string = "abcd"
db.initialize(DatabaseDir,"vetesmart.db;Password = " & PW & ";",false)