• 创建数据库


    需要判断几样
    1.文件是否存在
    2.文件是否是sqlite3数据库
    3.文件里面是否存在3个表
    4.树目录里面不能为空,必须有一条记录,并且Tree_Con里面要有xml内容;
    sqlite3 *db=NULL;
     
    char *zErrMsg = 0;
     
    int rc;
    //打开指定的数据库文件,如果不存在将创建一个同名的数据库文件
    try
    { 被检查的语句}
    catch(异常信息类型[变量名])
    rc = sqlite3_open("123.wpd", &db);
     
    if( rc )
    {
    MessageBox(0,sqlite3_errmsg(db),"提示",MB_ICONEXCLAMATION|MB_OKCANCEL );
    //fprintf(stderr, "Can’t open database: %s ", sqlite3_errmsg(db));
    sqlite3_close(db);
    }
     
    //创建一个表,如果该表存在,则不创建,
    //并给出提示信息,存储在zErrMsg 中
    char *sql = "create table File_list(id text,F_name text,Ex_name text,Path_name text,F_size text,C_time text,X_time,F_time text,F_Con BLOB );" ;
    rc=sqlite3_exec( db , sql , 0 , 0 , &zErrMsg );
    if(rc)
    {
    MessageBox(0,zErrMsg,"提示",MB_ICONEXCLAMATION|MB_OKCANCEL );
    return;
    }
    sql = "create table Tree(id integer primary key,Status integer,Tree_Con Blob);" ;
    rc=sqlite3_exec( db , sql , 0 , 0 , &zErrMsg );
    if(rc)
    {
    MessageBox(0,zErrMsg,"提示",MB_ICONEXCLAMATION|MB_OKCANCEL );
    return;
    }
    sql = "create table Rich(id text,F_Ctime text,F_Ftime text,F_Xtime text,F_Con Blob);" ;
    rc=sqlite3_exec( db , sql , 0 , 0 , &zErrMsg );
    if(rc)
    {
    MessageBox(0,zErrMsg,"提示",MB_ICONEXCLAMATION|MB_OKCANCEL );
    return;
    }
     
     
    //插入数据
    sql="insert into Tree(id) values(0)";
    //char *sql = "INSERT INTO "test" VALUES(NULL , 1 , 1 ,'200605011206', 18.9 );" ;
     
    sqlite3_exec( db , sql , NULL , 0 , &zErrMsg );
    //MessageBox(0,zErrMsg,"提示",MB_ICONEXCLAMATION|MB_OKCANCEL );
     
  • 相关阅读:
    练习上传下载时遇到的问题
    el表达式遇到的问题
    js中for循环闭包问题记录
    随机排座位(模板) 20.10.17
    #STL:优先队列数据结构函数的用法 #堆 #优先队列数据结构(堆) #priority_queue 20.10.17
    关于int的范围
    #归并排序 归并排序的刷题记录 ~20.09.25
    #欧拉函数 ~20.8.27
    #排列 #组合 ~20.8.24
    105.七夕祭
  • 原文地址:https://www.cnblogs.com/blogpro/p/11426905.html
Copyright © 2020-2023  润新知