Currently in my SQLite, I have a Person table like the following:
And another table Age like the following:
The Person table is traversed with the following method:
def print_tabla_person(cursor):
for fila in SQL_generate("SELECT * from Person;",cursor):
print(fila)
and the table Age I go through with this other method:
def print_tabla_age(cursor):
for fila in SQL_generate("SELECT * from Age;",cursor):
print(fila)
My problem is that the Person table shows it in its entirety and the Age table shows only 3 fields of all that it has (more than 40)
Why does that happen to me? (It does not serve me as an answer to join the tables, they are like this on purpose)
Thanks
I update:
SQL_generate method
import apsw
def SQL_generate(sql,cursor): #Ejecuta la sentencia sql
return cursor.execute(sql)
If I create a new script only with the query to Age it shows me everything correctly.