onCreate オーバーライドでテーブルを再定義する代わりに、Android の各テーブルから CREATE 文字列を取得する簡単な方法はありますか。各テーブルの全体を解析するだけで十分にイライラしていますが、まだ見つけていないより簡単な方法があることを願っています。
1 に答える
2
組み込みのテーブルを使用するsqlite_master
sqlite-3.7.2 e$ sqlite3
SQLite version 3.7.2
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table t1 (a, b, c integer);
sqlite> create table t2 (d, e, f text);
sqlite> select * from sqlite_master;
table|t1|t1|2|CREATE TABLE t1 (a, b, c integer)
table|t2|t2|3|CREATE TABLE t2 (d, e, f text)
sqlite> select sql from sqlite_master;
CREATE TABLE t1 (a, b, c integer)
CREATE TABLE t2 (d, e, f text)
于 2010-08-25T18:48:07.407 に答える