can i do something sql="select * from table1 ; Select * from table2"
in only one ExecQuery?
(like vb60, vb.net, php and other)
Multi - Recordset/ResultSet
in only one ExecQuery?
(like vb60, vb.net, php and other)
Multi - Recordset/ResultSet
B4X:
Dim Cursor As JdbcResultSet
Cursor = SQL1.ExecQuery("SELECT col1, col2 FROM table1")
Do While Cursor.NextRow
Log(Cursor.GetString("col1"))
Log(Cursor.GetInt("col2"))
Loop