Ver información de una tabla SQLite
La solución es la siguiente consulta:
SELECT * FROM sqlite_master;
SELECT * FROM sqlite_master where type = ‘table’;
SELECT type,name, tbl_name FROM sqlite_master where type = ‘table’;
PRAGMA table_info(familia);
«This pragma returns one row for each column in the named table. Columns in the result set include the column name, data type, whether or not the column can be NULL, and the default value for the column.»
Pragma devuelve una fila para cada columna en la tabla nombrada. Las columnas en el conjunto de resultados incluyen el nombre de la columna, el tipo de datos, si la columna puede ser NULL o no, y el valor predeterminado para la columna.
PRAGMA foreign_key_list(familia);
This pragma returns one row for each foreign key that references a column in the argument table.
Este pragma devuelve una fila para cada clave externa que hace referencia a una columna de la tabla.
https://www.sqlite.org/pragma.html
SELECT seq FROM sqlite_sequence where name = ‘familia’
SELECT seq + 1 FROM sqlite_sequence where name = ‘familia’
Fragmento de muestra en Python:
[sourcecode language=»python»]
import sqlite3
db = sqlite3.connect("basededatos.db")
dbconn = db.cursor()
print "Next Value: " + str(dbconn.execute("SELECT seq FROM sqlite_sequence where name = ‘familia’").fetchone()[0]+1)
print "Proximo Valor: " + str(dbconn.execute("SELECT seq + 1 FROM sqlite_sequence where name = ‘familia’").fetchone()[0])</pre>
[/sourcecode]
lhernandez@DskLhernandez:~$ python sqlite.py Next Value: 64 Proximo Valor: 64
http://www.sqlite.org/sqlite.html
http://sqlite.org/lang_corefunc.html