VirtualTam's bookmarks
Page 1 of 1
-
Pragma statements supported by SQLite
2016-08-20 1# List databases 2PRAGMA database_list; 3 4# Describe table 5PRAGMA table_info(<table_name>);
Page 1 of 1
Page 1 of 1
1# List databases
2PRAGMA database_list;
3
4# Describe table
5PRAGMA table_info(<table_name>);
Page 1 of 1