1. 首先導(dǎo)入SQL處理庫(kù)FMDB辅愿,使用FMDB來(lái)處理
2. 在導(dǎo)入需要處理的文件智亮,如file.db
3. 實(shí)例代碼
//從NSBundle目錄讀取
NSString* dbPath = [[NSBundle mainBundle]pathForResource:@"file.db" ofType:@""];
FMDatabase* database = [ FMDatabase databaseWithPath: dbPath ];
if ( ![ database open ] )
{
return;
}
// 查找表 AllTheQustions
FMResultSet* resultSet = [ database executeQuery: @"select * from table" ];
resultSet = [database executeQuery:@"select * from table"];
//讀取table表中所有字段
NSMutableDictionary *dict = resultSet.columnNameToIndexMap;
NSLog(@"========dic= %@",para);
// 循環(huán)逐行讀取數(shù)據(jù)resultSet next
while ( [ resultSet next ] )
{
// 對(duì)應(yīng)字段來(lái)取數(shù)據(jù)
NSString* fileid = [ resultSet stringForColumn: @"id" ];
NSString* fileName = [ resultSet stringForColumn: @"name" ];
// 讀取完之后關(guān)閉數(shù)據(jù)庫(kù)
[ database close ];
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者