Hi Guys,
Im working with this SQLCipher but unfortunately i the app closes after initialization of db
Dim SQLCipher1 As SQLCipher -- This was declare in process global
If SQLCipher1.IsInitialized = False Then
SQLCipher1.Initialize(File.DirInternal,"bond.db",False,DBPASSWORD,"")
End If
Dim Cursor1 As Cursor
APPLICATION STOPS HERE:
Unfortunately, <Application Name> has stopped.
Cursor1 = SQLCipher1.ExecQuery("SELECT transaction_no FROM transactions")
Cursor1.Position=0
Msgbox(Cursor1.GetString("transaction_no"), "")
I have already copied the icudt46l on the asset directory.
Thanks in advance.
Im working with this SQLCipher but unfortunately i the app closes after initialization of db
Dim SQLCipher1 As SQLCipher -- This was declare in process global
If SQLCipher1.IsInitialized = False Then
SQLCipher1.Initialize(File.DirInternal,"bond.db",False,DBPASSWORD,"")
End If
Dim Cursor1 As Cursor
APPLICATION STOPS HERE:
Unfortunately, <Application Name> has stopped.
Cursor1 = SQLCipher1.ExecQuery("SELECT transaction_no FROM transactions")
Cursor1.Position=0
Msgbox(Cursor1.GetString("transaction_no"), "")
I have already copied the icudt46l on the asset directory.
Thanks in advance.