Hi to all,
my hardware is a toshiba thrive and the situation is like that: on the sd-card i have a folder called data and a sqlite-table called stock.db e.g. /data/stock.db
I can see the table using the filemanager on the tablet.
This code fails to work:
Sub Process_Globals
Dim SQL1 As SQL
End Sub
...
Sub Activity_Create(FirstTime As Boolean)
MyDir = File.DirRootExternal & "/data"
MyFile = "stock.db"
SQL1.Initialize(MyDir, MyFile, False) :BangHead:
End Sub
Program will pause on the device... showing "SQL1.Initialize(MyDir, myFile, False)"
Hope you have any ideas why i cannot get in touch with that table.
Thanks
my hardware is a toshiba thrive and the situation is like that: on the sd-card i have a folder called data and a sqlite-table called stock.db e.g. /data/stock.db
I can see the table using the filemanager on the tablet.
This code fails to work:
Sub Process_Globals
Dim SQL1 As SQL
End Sub
...
Sub Activity_Create(FirstTime As Boolean)
MyDir = File.DirRootExternal & "/data"
MyFile = "stock.db"
SQL1.Initialize(MyDir, MyFile, False) :BangHead:
End Sub
Program will pause on the device... showing "SQL1.Initialize(MyDir, myFile, False)"
Hope you have any ideas why i cannot get in touch with that table.
Thanks