In SQLITE database, if I need table meta details, I can run the following command
C:\sqlite>sqlite3.exe sqlite2.db
SQLite version 3.7.15 2012-12-12 13:36:53
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> PRAGMA table_info(forum_forum);
0|id|integer|1||1
1|category_id|integer|0||0
2|name|varchar(100)|1||0
3|description|varchar(200)|1||0
4|locked|bool|1||0
I want to do the similar stuff in sqlalchemy
. Can somebody tell me how to do this ?
Solution
from sqlalchemy import *
from sqlalchemy.orm import sessionmaker
db_target = create_engine('sqlite:///C:\\Users\\asit\\workspace\\forum1\\src\\sqlite.db')
session = sessionmaker(db_target, autocommit = True)()
rs = session.execute("PRAGMA table_info(forum_forum)")
for row in rs:
print '%s %s %s %s %s' % (row['cid'], row['name'], row['type'], row['notnull'], row['pk'])
Output :-
0 id integer 1 1
1 category_id integer 0 0
2 name varchar(100) 1 0
3 description varchar(200) 1 0
4 locked bool 1 0