please format code with </> button * homework policy * asking questions
import de.bezier.data.sql.*;
SQLite db;
String SHOW_TABLE_STATUS = "SHOW TABLE STATUS";
String SHOW_TABLE_STATUS2 = "SHOW TABLES";
void setup()
{
size( 100, 100 );
db = new SQLite( this, "test.db" ); // open database file
db.connect();
db.execute(SHOW_TABLE_STATUS );
}
Good morning. nice to meet you.
‘SHOW’ command does not work.
- Is the’SHOW’ command originally not allowed?
- How can I check the table name in the current .db?
help me.