ubuntu 下安装sqlite3

官网下载源代码 :

SQLite Download Page

编译可执行的sqlite3 命令

bash 复制代码
gcc shell.c sqlite3.c  -o sqlite3

编译 sqlte3.o

bash 复制代码
gcc sqlite3.c -c

编写测试程序

cpp 复制代码
#include <iostream>
#include "sqlite3.h"

int main(int argc, char **argv)
{
    sqlite3 *DB;
    int exit = 0;
    exit = sqlite3_open("example.db", &DB);

    if (exit)
    {
        std::cerr << "Error open DB " << sqlite3_errmsg(DB) << std::endl;
        return (-1);
    }
    else
        std::cout << "Opened Database Successfully!" << std::endl;
    sqlite3_close(DB);
    return (0);
}

g++ 编译测试程序

bash 复制代码
g++ Test.cpp sqlite3.o  -o Test -I ./

直接安装libsqlite3-dev

bash 复制代码
sudo apt -y install libsqlite3-dev

使用库编译测试程序:

bash 复制代码
g++ Test.cpp -lsqlite3  -o Test -I ./

运行程序

bash 复制代码
yao@T3660:~/yao2023/C++/sqlite-amalgamation-3430100$ ./Test
Opened Database Successfully!

发现在当前目录下多了一个example.db 文件

相关推荐
悄悄敲敲敲16 小时前
MySQL表的约束
数据库·mysql
鼠爷ねずみ16 小时前
SpringCloud前后端整体开发流程-以及技术总结文章实时更新中
java·数据库·后端·spring·spring cloud
九皇叔叔17 小时前
MySQL 数据库 Read View 详解
数据库·mysql·mvcc·read view
Elastic 中国社区官方博客18 小时前
Elasticsearch:圣诞晚餐 BBQ - 图像识别
大数据·数据库·elasticsearch·搜索引擎·ai·全文检索
cui_win18 小时前
Prometheus实战教程 - Redis 监控
数据库·redis·prometheus
JIngJaneIL18 小时前
基于java + vue个人博客系统(源码+数据库+文档)
java·开发语言·前端·数据库·vue.js·spring boot
TG:@yunlaoda360 云老大19 小时前
华为云国际站代理商备份策略设置过程中遇到问题如何解决?
服务器·数据库·华为云
SelectDB19 小时前
Doris Catalog 已上线!性能提升 200x,全面优于 JDBC Catalog,跨集群查询迈入高性能分析时代
数据库·数据分析·apache
TAEHENGV19 小时前
进度跟踪模块 Cordova 与 OpenHarmony 混合开发实战
android·javascript·数据库
神秘面具男0319 小时前
MySQL 从基础到实践
数据库·mysql