午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    IPhone MySQL數(shù)據(jù)庫操作代碼例子
    來源:易賢網(wǎng) 閱讀:1222 次 日期:2014-11-04 08:59:51
    溫馨提示:易賢網(wǎng)小編為您整理了“IPhone MySQL數(shù)據(jù)庫操作代碼例子”,方便廣大網(wǎng)友查閱!

    //database operation

    打開數(shù)據(jù)庫

    -(BOOL) opendatabase{

    NSArray*paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);

    NSString *documentsDirectory = [pathsobjectAtIndex:0];

    NSString *path = [documentsDirectorystringByAppendingPathComponent:@"mydb.sql"];

    NSFileManager*fileManager = [NSFileManagerdefaultManager];

    BOOL find = [fileManagerfileExistsAtPath:path];

    //找到數(shù)據(jù)庫文件mydb.sql

    if (find) {

    NSLog(@"Database file have already existed.");

    if(sqlite3_open([pathUTF8String], &database_) !=SQLITE_OK) {

    sqlite3_close(database_);

    NSLog(@"Error: open database file.");

    return NO;

    }

    return YES;

    }

    if(sqlite3_open([path UTF8String], &database_) ==SQLITE_OK) {

    //bFirstCreate_ = YES;

    [selfcreateChannelsTable:database_];//在后面實(shí)現(xiàn)函數(shù)createChannelsTable

    return YES;

    }else {

    sqlite3_close(database_);

    NSLog(@"Error: open database file.");

    return NO;

    }

    return NO;

    }

    創(chuàng)建表

    - (BOOL) createChannelsTable:(sqlite3*)db{

    char*sql = "CREATE TABLE reports (id integer primary key,stime text,stitle text,scal text,sruntime text)";

    sqlite3_stmt *statement;

    if(sqlite3_prepare_v2(db, sql, -1, &statement,nil) !=SQLITE_OK) {

    NSLog(@"Error: failed to prepare statement:create reports table");

    return NO;

    }

    int success =sqlite3_step(statement);

    sqlite3_finalize(statement);

    if ( success !=SQLITE_DONE) {

    NSLog(@"Error: failed to dehydrate:CREATE TABLE reports");

    return NO;

    }

    NSLog(@"Create table 'reports' successed.");

    return YES;

    }

    插入表

    - (BOOL)insertOneChannel:(NSString*)stime mytitle:(NSString*)stitle mycal:(NSString*)scal myruntime:(NSString*)sruntime

    {

    sqlite3_stmt *statement;

    staticchar*sql = "INSERT INTO reports (id,stime,stitle,scal,sruntime) VALUES(NULL,?,?,?,?)";

    //問號(hào)的個(gè)數(shù)要和(cid,title,imageData,imageLen)里面字段的個(gè)數(shù)匹配,代表未知的值,將在下面將值和字段關(guān) 聯(lián)。

    int success =sqlite3_prepare_v2(database_, sql, -1, &statement,NULL);

    if (success !=SQLITE_OK) {

    NSLog(@"Error: failed to insert:channels");

    return NO;

    }

    //這里的數(shù)字1,2,3,4代表第幾個(gè)問號(hào)

    //sqlite3_bind_text(statement, 1, stime, -1, SQLITE_TRANSIENT);

    char*p = [stime cStringUsingEncoding:1];

    sqlite3_bind_text(statement,1, [stime cStringUsingEncoding:1], -1,SQLITE_TRANSIENT);

    sqlite3_bind_text(statement,2, [stitle cStringUsingEncoding:1], -1,SQLITE_TRANSIENT);

    sqlite3_bind_text(statement,3, [scal cStringUsingEncoding:1], -1,SQLITE_TRANSIENT);

    sqlite3_bind_text(statement,4, [sruntime cStringUsingEncoding:1], -1,SQLITE_TRANSIENT);

    success =sqlite3_step(statement);

    sqlite3_finalize(statement);

    if (success ==SQLITE_ERROR) {

    NSLog(@"Error: failed to insert into the database with message.");

    return NO;

    }

    NSLog(@"Insert One Channel#############:id = _");

    return YES;

    }

    查詢表

    - (void) getChannels:(NSMutableArray*)fChannels{

    sqlite3_stmt *statement =nil;

    char*sql = "SELECT * FROM reports";

    if (sqlite3_prepare_v2(database_, sql, -1, &statement,NULL) !=SQLITE_OK) {

    NSLog(@"Error: failed to prepare statement with message:get channels.");

    }

    //查詢結(jié)果集中一條一條的遍歷所有的記錄,這里的數(shù)字對(duì)應(yīng)的是列值。

    while (sqlite3_step(statement) ==SQLITE_ROW) {

    //char* cid = (char*)sqlite3_column_text(statement, 1);

    char* stime = (char*)sqlite3_column_text(statement,1);

    char* stitle =(char*)sqlite3_column_text(statement,2);

    char* scal = (char*)sqlite3_column_text(statement,3);

    char* sruntime= (char*)sqlite3_column_text(statement,4);

    //NSString *tmp = [NSString stringWithCString:stitle encoding:1];

    myreportitem* ri = [[myreportitemalloc]init];

    ri.mytime= [NSString stringWithCString:stime encoding:1];

    更多信息請(qǐng)查看IT技術(shù)專欄

    更多信息請(qǐng)查看技術(shù)文章
    易賢網(wǎng)手機(jī)網(wǎng)站地址:IPhone MySQL數(shù)據(jù)庫操作代碼例子
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

    2025國(guó)考·省考課程試聽報(bào)名

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)