On the table userRecords the field userRecordIDNumber is defined like
userRecordIDNumber INTEGER PRIMARY KEY AUTOINCREMENT
so SQLite can create the sqlite_sequence table
I need to read the last userRecordIDNumber inserted
My code just after the Try Using
Dim LastRecordIDNumber as Integer
cmdConnection.CommandText = "SELECT seq FROM sqlite_sequence where name="userRecords""
LastRecordIDNumber = CType(cmdConnection.ExecuteScalar(), Integer)
But VB.net didn't accept the double quote after the table name
Do I need to use a special String concatenation trick or something similar?