Linux 下用C語言串連 sqlite

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   os   ar   for   檔案   

1.在 /home/ 建立一個檔案夾名為 sqlite

#cd /home

#mkdir sqlite

2.編寫C語言代碼,名稱為 sql.c,代碼如下

    // name: sql.c       // This prog is used to test C/C++ API for sqlite3.It is very simple,ha!       // Author : zieckey All rights reserved.       // data : 2006/11/13             #include <stdio.h>       #include <stdlib.h>       #include "sqlite3.h"           int main( void )       {       sqlite3 *db=NULL;       char *zErrMsg = 0;       int rc;             //開啟指定的資料庫檔案,如果不存在將建立一個同名的資料庫檔案       rc = sqlite3_open("zieckey.db", &db);        if( rc )       {       fprintf(stderr, "Can‘t open database: %s ", sqlite3_errmsg(db));       sqlite3_close(db);       exit(1);       }       else printf("You have opened a sqlite3 database named zieckey.db successfully! Congratulations! Have fun ! ^-^ ");             sqlite3_close(db); //關閉資料庫       return 0;       }  

 

3.在網上下載原始碼,並放到建立的 sqlite檔案夾下。 http://www.sqlite.org/

4.解壓下在的原始碼 sqlite-autoconf-3080600.tar.gz

#tar -zxvf sqlite-autoconf-3080600.tar.gz

此時在/home/sqlite/檔案夾下會多一個檔案夾 sqlite-autoconf-3080600

5.編譯代碼,也是最重要的一步

# gcc -o sql.out -L /home/sqlite/sqlite-autoconf-3080600/.libs -I/home/sqlite/sqlite-autoconf-3080600 sql.c  -lsqlite3

上面的編譯主要意義: -L 代表你安裝sqlite3類庫所在的路徑, -I代表安裝sqlite3的標頭檔路徑 而-l表示可執行程式的名稱,經過上面的編譯,即可成功。

sql.out 是產生的可執行檔,sql.c 是原檔案

執行產生的程式碼

#./sql.out

輸出如下資訊,表示成功

You have opened a sqlite3 database named zieckey.db successfully! Congratulations! Have fun ! ^-^

Linux 下用C語言串連 sqlite

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.