SQLite3

QuickLite

NSString *filename, *query;
sqlite3* database;
int r = sqlite3_open( [filename fileSystemRepresentation], &database );
char **table;
int columnCount, rowCount;
r = sqlite3_get_table( database, [query UTF8String], &table, &rowCount, &columnCount, NULL);
r = sqlite3_close(database);
NSString *value = [NSString stringWithUTF8String: table[ columnCount*3+2-1 ] ];
sqlite3_free_table(table);

リロード   新規 編集 凍結 差分 添付 複製 改名   トップ 一覧 検索 最終更新 バックアップ   ヘルプ   最終更新のRSS
Last-modified: Mon, 14 Feb 2011 07:55:21 JST (4823d)