I have a main Module and another module I named DM.
In the DM I want to addObject.
However, when I call the Public Sub OpenDBaseCon
I get an error displayed that the SQLiteDLL is not available. Though I did add it to the components in the DM Module.
In the DM I want to addObject.
However, when I call the Public Sub OpenDBaseCon
I get an error displayed that the SQLiteDLL is not available. Though I did add it to the components in the DM Module.
B4X:
Sub Globals
'Declare the global variables here.
Public DBase
End Sub
Public Sub OpenDBaseCon
AddObject ("DBase", "Connection")
DBase.New1
DBase.Open("Data Source = " & AppPath & "\TSCR.sl3")
End Sub