Yes, It's SQLite DB.
Public Sub CopyDBFromAssets (FileName As String) As String
Dim TargetDir As String
If File.ExternalWritable Then TargetDir = File.DirDefaultExternal Else TargetDir = File.DirInternal
If File.Exists(TargetDir, FileName) = False Then
File.Copy(File.DirAssets, FileName, TargetDir, FileName)
End If
Return TargetDir
End Sub
I used this Sub from DBUTILS. Rethinking, I then tried to reference tables in File.DirInternal and File.DirExternal. Should I have used 'TargetDir' instead? (Eril's DBUTILS has the sub for copying files from ASSETS but doesn't use it in his sample program. He rebuilds tables instead...hence the confusion.