c语言 sqlite_SQLite与C语言

c语言 sqlite

SQLite数据库简介 (Introduction to SQLite database)

SQLite is a relational database; it is used for embedded devices. Now a day it is using worldwide for different embedded devices.

SQLite是一个关系数据库。 它用于嵌入式设备。 如今,它已在全球范围内用于不同的嵌入式设备。

SQLite database has following features

SQLite数据库具有以下功能

  • Serverless

    无服务器

  • Zero Configuration

    零配置

  • Transactional SQL database engine

    事务型SQL数据库引擎

It supports following operating systems

它支持以下操作系统

  • Linux

    的Linux

  • Windows

    视窗

  • Mac

    苹果电脑

  • Solaris

    的Solaris

  • Android

    安卓系统

It can be used with following programming languages

可以与以下编程语言一起使用

  • C

    C

  • C++

    C ++

  • PHP

    PHP

  • Java

    Java

  • Python etc

    Python等

In this article we will learn Sqlite3 tool for SQLite database, to use Sqlite3 tool first we need to install it into our system, it is easily available for all operating systems. Sqlite3 tool is a command-line tool. We can use all the most SQL statement in the SQLite database.

在本文中,我们将学习用于SQLite数据库的Sqlite3工具,要首先使用Sqlite3工具,我们需要将其安装到我们的系统中,所有操作系统都可以轻松使用它。 Sqlite3工具是命令行工具。 我们可以使用SQLite数据库中所有最多SQL语句。

在SQLite中创建数据库 (Creation for database in SQLite)

    $ sqlite3 mytest.db
SQlite version 3.8.2 2015-11-07 15:54:36
Enter  ".help" for instructions
Enter SQL statements terminated with a ";"

In the above example, we passed the database name with the sqlite3 tool using the command line, now "mytest.db" database will be created in your system.

在上面的示例中,我们使用sqlite3工具通过命令行传递了数据库名称,现在将在您的系统中创建“ mytest.db”数据库。

如何检查SQLite数据库中创建的表? (How to check created tables in SQLite database?)

    Sqlite> .tables

The above command display list of created tables in selected database.

上面的命令显示在所选数据库中创建的表的列表。

如何从数据库退出? (How to exit from database?)

    Sqlite> .exit

Above command is used to exit or quit from selected database.

上面的命令用于退出或退出所选数据库。

Here, we will use the Linux operating system and GNU C Compiler (GCC). We will write the first program by which we can get the version number of installed Sqlite database.

在这里,我们将使用Linux操作系统和GNU C编译器(GCC) 。 我们将编写第一个程序,通过该程序可以获得已安装的Sqlite数据库的版本号

#include<sqlite3.h>
#include<stdio.h>
int  main()
{
printf("%s\n",sqlite3_libversion());
return 0;
}

In the above example, we include header file <sqlite3.h> that contains a declaration for multiple functions but we used one of them is sqlite3_libversion() which returns the version number of installed SQLite database.

在上面的示例中,我们包括头文件<sqlite3.h> ,该头文件包含多个函数的声明,但我们使用的其中一个是sqlite3_libversion() ,该函数返回已安装SQLite数据库的版本号。

Now, we will know how to compile this program?

现在,我们将知道如何编译该程序?

    $ gcc getversion.c -o getversion -lsqlite3 -std=c

In above compilation statement getversion.c is source code file and getversion is executable output file. And to compile sqlite library we need to use complile flags like -lsqlite -std=c .

在上面的编译语句中, getversion.c是源代码文件,而getversion是可执行输出文件。 要编译sqlite库,我们需要使用-lsqlite -std = c之类的编译标志。

Execution of the file:

执行文件:

    $ ./gerversion

Output

输出量

3.8.2

Now, we use another example for getting SQLite database version using SQLite Query in c program.

现在,我们使用另一个示例在C程序中使用SQLite Query获取SQLite数据库版本。

#include <sqlite3.h>
#include <stdio.h>
int main()
{
sqlite3 *  DB;
sqlite_stmt * RES;
int rec = 0;
rec = sqlite3_open(":memory:",&DB);
if( rec != SQLITE_OK)
{
printf("\nDatabase cannot opened: %s",sqlite3_errmsg(DB));
sqlite3_close(DB);
return 1;
}
rec = sqlite3_prepare_v2(DB,"select SQLITE_VERSION()", -1, &RES,0);
if( rec != SQLITE_OK)
{
printf("\nFailed to get data: %s",sqlite3_errmsg(DB));
sqlite3_close(DB);
return 1;
}
rec = sqlite3_step(RES);
if(rec == SQLITE_ROW)
{
printf("%s\n",sqlite3_column_text(RES,0));
}
sqlite3_finalize(RES);
sqlite3_close(DB);
return 0;
} 

In the above example, we used SQLITE_VERSION() query to get version number of SQLite database.

在上面的示例中,我们使用SQLITE_VERSION()查询来获取SQLite数据库的版本号。

Also, we used the following pointers:

另外,我们使用了以下指针:

    sqlite3 *DB;
sqlite3_stmt *RES;

Here, DB is used to represent database and RES is used to represent SQL statement.

在这里, DB用于表示数据库,而RES用于表示SQL语句。

We used following functions in above example:

在上面的示例中,我们使用了以下功能:

  • sqlite3_open() to open data here we use ":memory:" to read sqlite version.

    sqlite3_open()在这里打开数据,我们使用“:memory:”读取sqlite版本。

  • sqlite3_close() to close opened database.

    sqlite3_close()关闭打开的数据库。

  • sqlite3_errmsg() to display error message.

    sqlite3_errmsg()显示错误消息。

  • sqlite3_prepare_v2() to execute SQL query.

    sqlite3_prepare_v2()执行SQL查询。

  • sqlite3_step() to get record one by one.

    sqlite3_step()一张一张地获取记录。

  • sqlite3_finalize() is used to destroy the object of a prepared statement.

    sqlite3_finalize()用于销毁准备好的语句的对象。

Reference: http://zetcode.com/db/sqlitec/

参考:http: //zetcode.com/db/sqlitec/

翻译自: https://www.includehelp.com/c/sqlite-with-c-language.aspx

c语言 sqlite

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377127.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《MySQL 8.0.22执行器源码分析(2)解读函数 ExecuteIteratorQuery》

函数代码 bool SELECT_LEX_UNIT::ExecuteIteratorQuery(THD *thd) {THD_STAGE_INFO(thd, stage_executing);DEBUG_SYNC(thd, "before_join_exec");Opt_trace_context *const trace &thd->opt_trace;Opt_trace_object trace_wrapper(trace);Opt_trace_object…

C语言,如何产生随机数

1. 基本函数 在C语言中取随机数所需要的函数是: int rand(void);void srand (unsigned int n); rand()函数和srand()函数被声明在头文件stdlib.h中,所以要使用这两个函数必须包含该头文件: #include <stdlib.h> 2. 使用方法 rand()函数返回0到RAND_MAX之间的伪随机数(pse…

MongoDB源码概述——内存管理和存储引擎

数据存储&#xff1a; 之前在介绍Journal的时候有说到为什么MongoDB会先把数据放入内存&#xff0c;而不是直接持久化到数据库存储文件&#xff0c;这与MongoDB对数据库记录文件的存储管理操作有关。MongoDB采用操作系统底层提供的内存文件映射&#xff08;MMap&#xff09;的方…

OBTW的完整形式是什么?

OBTW&#xff1a;哦&#xff0c;顺便说一下 (OBTW: Oh, By The Way) OBTW is an abbreviation of "Oh, By The Way". OBTW是“哦&#xff0c;顺便说一下”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media network…

SharePoint 2010 Form Authentication (SQL) based on existing database

博客地址 http://blog.csdn.net/foxdaveSharePoint 2010 表单认证&#xff0c;基于现有数据库的用户信息表本文主要描述本人配置过程中涉及到的步骤&#xff0c;仅作为参考&#xff0c;不要仅限于此步骤。另外本文通俗易懂&#xff0c;适合大众口味儿。I. 开启并配置基于声明的…

《MySQL 8.0.22执行器源码分析(3.1)关于RowIterator》

目录RowIteratorInit()Read()SetNullRowFlag()UnlockRow()StartPSIBatchMode()EndPSIBatchModeIfStarted()real_iterator()RowIterator 使用选定的访问方法读取单个表的上下文&#xff1a;索引读取&#xff0c;扫描等&#xff0c;缓存的使用等。 它主要是用作接口&#xff0c;但…

hdu 2432法里数列

这题本来完全没思路的&#xff0c;后来想一想&#xff0c;要不打个表找找规律吧。于是打了个表&#xff0c;真找到规律了。。。 打表的代码如下&#xff1a; int n; void dfs(int x1, int y1, int x2, int y2) {if (y1 y2 < n) {dfs(x1, y1, x1 x2, y1 y2);printf("…

python学习笔记四——数据类型

1.数字类型&#xff1a; 2.字符串类型&#xff1a; 切片&#xff1a;a[m:n:s] m:起始值 n:结束值&#xff08;不包括n&#xff09; s:步长&#xff0c;负数表示从后向前取值 3.序列&#xff1a;列表&#xff0c;元组和字符串都是序列 序列的两个主要特点是索引操作符和切片…

小狐狸ChatGPT系统 不同老版本升级至新版数据库结构同步教程

最新版2.6.7下载&#xff1a;https://download.csdn.net/download/mo3408/88656497 小狐狸GPT付费体验系统如何升级&#xff0c;该系统更新比较频繁&#xff0c;也造成了特别有用户数据情况下升级时麻烦&#xff0c;特别针对会员关心的问题出一篇操作教程&#xff0c;本次教程…

《MySQL 8.0.22执行器源码分析(3.2)关于HashJoinIterator》

在本文章之前&#xff0c;应该了解的概念&#xff1a; 连接的一些概念、NLJ、BNL、HashJoin算法。 目录关于join连接probe行保存概念Hashjoin执行流程&#xff08;十分重要&#xff09;HashJoinIterator成员函数讲解1、BuildHashTable2、ReadNextHashJoinChunk3、ReadRowFromPr…

json 语法_JSON的基本语法

json 语法JSON which stands for JavaScript Object Notation is a lightweight readable data format that is structurally similar to a JavaScript object much like its name suggests. 代表JavaScript Object Notation的 JSON是一种轻量级的可读数据格式&#xff0c;其结…

RFC3261(17 事务)

SIP是一个基于事务处理的协议&#xff1a;部件之间的交互是通过一系列相互独立的消息交换来完成的。特别是&#xff0c;一个SIP 事务由一个单个请求和这个请求的所有应答组成&#xff0c;这些应答包括了零个或者多个临时应答以及一个或者多个终结应答。在事务中&#xff0c;当请…

HDUOJ---1754 I Hate It (线段树之单点更新查区间最大值)

I Hate It Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 33469 Accepted Submission(s): 13168 Problem Description很多学校流行一种比较的习惯。老师们很喜欢询问&#xff0c;从某某到某某当中&#xff0c;…

WEG的完整形式是什么?

WEG&#xff1a;邪恶邪恶的咧嘴 (WEG: Wicked Evil Grin) WEG is an abbreviation of "Wicked Evil Grin". WEG是“ Wicked Evil Grin”的缩写 。 It is also known as EWG (Evil Wicked Grin) "Grin" refers to a broad smile. "Wicked" refer…

C# 把数字转换成链表

例如&#xff1a;123456转换成 1 -> 2 -> 3-> 4-> 5-> 6 View Code static LinkedList<int> CovertIntToLinkedList(int num){Stack<int> stack new Stack<int>();LinkedList<int> result new LinkedList<int>();while (num!0…

《MySQL 8.0.22执行器源码分析(4.1)Item_sum类以及聚合》

Item_sum类用于SQL聚合函数的特殊表达式基类。 这些表达式是在聚合函数&#xff08;sum、max&#xff09;等帮助下形成的。item_sum类也是window函数的基类。 聚合函数&#xff08;Aggregate Function&#xff09;实现的大部分代码在item_sum.h和item_sum.cc 聚合函数限制 不…

Java 性能优化实战记录(2)---句柄泄漏和监控

前言: Java不存在内存泄漏, 但存在过期引用以及资源泄漏. (个人看法, 请大牛指正) 这边对文件句柄泄漏的场景进行下模拟, 并对此做下简单的分析.如下代码为模拟一个服务进程, 忽略了句柄关闭, 造成不能继续正常服务的小场景. 1 public class FileHandleLeakExample {2 3 p…

什么是Java文件?

Java文件 (Java files) The file is a class of java.io package. 该文件是java.io包的类。 If we create a file then we need to remember one thing before creating a file. First, we need to check whether a file exists of the same name or not. If a file of the sa…

绕过本地验证提交HTML数据

我们在入侵一个网站,比如上传或者自己定义提交的文件时,会在本地的代码中遇到阻碍,,也就是过 滤,过滤有两种,一种是在远程服务器的脚本上进行的过滤,这段代码是在服务器上运行后产生作用的,这种过 滤方式叫做远程过滤;另一种是在我们的IE浏览器里执行的脚本过滤,就是说是在我们…

《dp补卡——343. 整数拆分、96. 不同的二叉搜索树》

343. 整数拆分 1、确定dp数组以及下标含义。 dp[i]&#xff1a;分拆数字i&#xff0c;可以得到的最大的乘积 2、确定递推公式&#xff1a; dp[i]最大乘积出处&#xff1a;从1遍历j到i&#xff0c;j * dp[i-j] 与 j * (i-j)取最大值。( 拆分j的情况&#xff0c;在遍历j的过程…