Sure, here's the code and I've attached the resulting database too:
FileOpen(c1,AppPath & "\localdata.csv",cWrite)
FileWrite (c1,tmpString)
FileClose(c1)
'Create Table
tblData.LoadCSV ("localdata.csv", "|", True, True)
tblData.AddCol(cString,"Edited",25)
tblData.AddCol(cString,"Uploaded",25)
'Reproduce Table as SQLite database
'First delete the existing table if it exists
Command.CommandText = "DROP TABLE IF EXISTS assets"
Command.ExecuteNonQuery
'Create database table from table object
Connection.CreateSQLTable ("tblData","assets")