Here it is: Public Shared Sub SQLite_ExecuteNonQuerys(ByVal table As DataTable) If SQLite_Connect() = False Then Return End If Dim adapter As New SQLiteDataAdapter() adapter.SelectCommand = New SQLiteCommand(String.Format("SELECT * FROM {0}", table.TableName), SQLite_Connection) Dim update...