茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    iphone mysql數據庫操作代碼例子
    來源:易賢網 閱讀:1045 次 日期:2015-02-02 13:50:30
    溫馨提示:易賢網小編為您整理了“iphone mysql數據庫操作代碼例子”,方便廣大網友查閱!

    //database operation

    打開數據庫

    -(bool) opendatabase{

    nsarray*paths = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask,yes);

    nsstring *documentsdirectory = [pathsobjectatindex:0];

    nsstring *path = [documentsdirectorystringbyappendingpathcomponent:@mydb.sql];

    nsfilemanager*filemanager = [nsfilemanagerdefaultmanager];

    bool find = [filemanagerfileexistsatpath:path];

    //找到數據庫文件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_];//在后面實現函數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,?,?,?,?);

    //問號的個數要和(cid,title,imagedata,imagelen)里面字段的個數匹配,代表未知的值,將在下面將值和字段關 聯。

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

    if (success !=sqlite_ok) {

    nslog(@error: failed to insert:channels);

    return no;

    }

    //這里的數字1,2,3,4代表第幾個問號

    //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.);

    }

    //查詢結果集中一條一條的遍歷所有的記錄,這里的數字對應的是列值。

    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];

    更多信息請查看IT技術專欄

    更多信息請查看技術文章
    易賢網手機網站地址:iphone mysql數據庫操作代碼例子

    2026國考·省考課程試聽報名

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