Linux下如何运行sql脚本

Linux下如何运行sql脚本,第1张

Linux运行sql脚本的具体 *** 作步骤如下:

1、使用shell工具登陆到安装postgresql的服务器,切换到postgres用户,postgresql默认的 *** 作用户,命令是:su - postgres,查看当前路径是/var/lib/psql,创建一个test.sql脚本文件,命令是:vim test.sql。

2、sql脚本内容是:create table test (id int not null primary key,name text)insert into test valus(1, 't1')

3、执行test.sql脚本,命令是:psql -f test.sql

这里是因为postgresql安装本机上,在第一步中我们切换到了postgres用户,因此这里默认就是postgres用户来 *** 作,不用带上用户名和密码。执行结果如下,可以看到有两个提示:

create table

insert 0 1

执行完成后,我们登入数据库,命令是:psql

4、进入psql交互式命令行后,我们执行两个查看命令:\d

可以看到表test确实已经创建成功,然后执行命令:\d test

可以看到表中字段是id和name,和我们创建语句中内容一样,说明第一条语句执行成功。

5、查看表中数据,命令是:select * from test

显示出来的值是1,t1,说明第二条执行语句也执行成功,说明test.sql脚本执行成功。

6、默认是postgres用户,本机 *** 作是,不需要用户和密码,现在我们来试试 *** 作远程linux服务器上的postgresql,也就是说执行本地的脚本文件,在远程服务器上创建表。如下面图中所示,命令是:psql -U test1 -h 192.168.1.194 -f test.sql,输入对应用户的密码。

7、登陆到这个远程服务器上,命令是:psql -U test -h 192.168.194

执行查看命令:\d,\d test

最后查询数据库:select * from test结果和上面都一致。

下面我们看看怎么在C语言中向数据库插入数据。

好的,我们现编辑一段c代码,取名为 insert.c

// name: insert.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/18

#include <stdio.h>

#include <stdlib.h>

#include "sqlite3.h"

#define _DEBUG_

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 ! ^-^

")

//创建一个表,如果该表存在,则不创建,并给出提示信息,存储在 zErrMsg 中

char *sql = " CREATE TABLE SensorData(

ID INTEGER PRIMARY KEY,

SensorID INTEGER,

SiteNum INTEGER,

Time VARCHAR(12),

SensorParameter REAL

)"

sqlite3_exec( db , sql , 0 , 0 , &zErrMsg )

#ifdef _DEBUG_

printf("%s

",zErrMsg)

#endif

//插入数据

sql = "INSERT INTO "SensorData" VALUES( NULL , 1 , 1 , '200605011206', 18.9 )"

sqlite3_exec( db , sql , 0 , 0 , &zErrMsg )

sql = "INSERT INTO "SensorData" VALUES( NULL , 1 , 1 , '200605011306', 16.4 )"

sqlite3_exec( db , sql , 0 , 0 , &zErrMsg )

sqlite3_close(db)//关闭数据库

return 0

}

好的,将上述代码写入一个文件,并将其命名为 insert.c 。

解释:

sqlite3_exec的函数原型说明如下:

int sqlite3_exec(

sqlite3*,

const char *sql,

sqlite_callback,

void *,

char **errms

g

)

编译:

[root@localhost temp]# gcc insert.c -lsqlite3 -L/usr/local/sqlite3/lib -I/usr/local/sqlite3/include

insert.c:28:21: warning: multi-line string literals are deprecated

[root@localhost temp]#

执行

[root@localhost temp]# ./a.out

./a.out: error while loading shared libraries: libsqlite3.so.0: cannot open shared object file: No such file or directory

[root@localhost temp]#

同样的情况,如上文处理方法:

[root@localhost temp]# export LD_LIBRARY_PATH=/usr/local/sqlite3/lib:$LD_LIBRARY_PATH

[root@localhost temp]# ./a.out

You have opened a sqlite3 database named zieckey.db successfully!

Congratulations! Have fun ! ^-^

(null)

(null)

(null)

[root@localhost temp]#

运行成功了,好了,现在我们来看看是否插入了数据

[root@localhost temp]# /usr/local/sqlite3/bin/sqlite3 zieckey.db

SQLite version 3.3.8

Enter ".help" for instructions

sqlite>select * from SensorData

1|1|1|200605011206|18.9

2|1|1|200605011306|16.4

sqlite>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8343126.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存