- SQLite 教程
- SQLite - 主页
- SQLite - 概述
- SQLite - 安装
- SQLite - 命令
- SQLite - 语法
- SQLite - 数据类型
- SQLite - 创建数据库
- SQLite - 附加数据库
- SQLite - 分离数据库
- SQLite - 创建表
- SQLite - 删除表
- SQLite - 插入查询
- SQLite - 选择查询
- SQLite - 运算符
- SQLite - 表达式
- SQLite - WHERE 子句
- SQLite - AND & OR 子句
- SQLite - 更新查询
- SQLite - 删除查询
- SQLite - LIKE 子句
- SQLite - GLOB 子句
- SQLite - LIMIT 子句
- SQLite - ORDER By 子句
- SQLite - GROUP By 子句
- SQLite - HAVING 子句
- SQLite - DISTINCT 关键字
- 高级SQLite
- SQLite-PRAGMA
- SQLite - 约束
- SQLite - 连接
- SQLite - UNIONS 子句
- SQLite - NULL 值
- SQLite - ALIAS 语法
- SQLite - 触发器
- SQLite - 索引
- SQLite - 按子句索引
- SQLite - ALTER 命令
- SQLite - TRUNCATE 命令
- SQLite - 视图
- SQLite - 事务
- SQLite - 子查询
- SQLite - 自动增量
- SQLite - 注入
- SQLite - 解释
- SQLite - 真空
- SQLite - 日期和时间
- SQLite - 有用的函数
- SQLite 有用资源
- SQLite - 快速指南
- SQLite - 有用的资源
- SQLite - 讨论
SQLite-Perl
在本章中,您将学习如何在 Perl 程序中使用 SQLite。
安装
SQLite3可以使用Perl DBI模块与Perl集成,该模块是Perl编程语言的数据库访问模块。它定义了一组提供标准数据库接口的方法、变量和约定。
以下是在 Linux/UNIX 机器上安装 DBI 模块的简单步骤 -
$ wget http://search.cpan.org/CPAN/authors/id/T/TI/TIMB/DBI-1.625.tar.gz $ tar xvfz DBI-1.625.tar.gz $ cd DBI-1.625 $ perl Makefile.PL $ make $ make install
如果您需要为 DBI 安装 SQLite 驱动程序,则可以按如下方式安装 -
$ wget http://search.cpan.org/CPAN/authors/id/M/MS/MSERGEANT/DBD-SQLite-1.11.tar.gz $ tar xvfz DBD-SQLite-1.11.tar.gz $ cd DBD-SQLite-1.11 $ perl Makefile.PL $ make $ make install
DBI 接口 API
以下是重要的 DBI 例程,它们可以满足您从 Perl 程序使用 SQLite 数据库的要求。如果您正在寻找更复杂的应用程序,那么您可以查看 Perl DBI 官方文档。
先生。 | 接口及说明 |
---|---|
1 | DBI->connect($data_source, "", "", \%attr) 建立到所请求的 $data_source 的数据库连接或会话。如果连接成功,则返回数据库句柄对象。 数据源的格式如下:DBI:SQLite:dbname = 'test.db'其中 SQLite 是 SQLite 驱动程序名称,test.db 是 SQLite 数据库文件的名称。如果文件名指定为':memory:',它将在 RAM 中创建一个内存数据库,该数据库仅在会话期间持续。 如果文件名是实际的设备文件名,则它将尝试使用其值打开数据库文件。如果不存在该名称的文件,则会创建一个具有该名称的新数据库文件。 您将第二个和第三个参数保留为空白字符串,最后一个参数用于传递各种属性,如下例所示。 |
2 | $dbh->do($sql) 该例程准备并执行单个 SQL 语句。返回受影响的行数或错误时 undef。返回值 -1 表示行数未知、不适用或不可用。这里,$dbh 是 DBI->connect() 调用返回的句柄。 |
3 |
$dbh->准备($sql) 该例程准备一条语句供数据库引擎稍后执行,并返回对语句句柄对象的引用。 |
4 |
$sth->执行() 该例程执行执行准备好的语句所需的任何处理。如果发生错误,则返回 undef。无论受影响的行数如何,成功执行始终返回 true。这里,$sth 是 $dbh->prepare($sql) 调用返回的语句句柄。 |
5 |
$sth->fetchrow_array() 此例程获取下一行数据并将其作为包含字段值的列表返回。空字段在列表中作为 undef 值返回。 |
6 |
$DBI::错误 这相当于 $h->err,其中 $h 是任何句柄类型,例如 $dbh、$sth 或 $drh。这将从最后调用的驱动程序方法返回本机数据库引擎错误代码。 |
7 |
$DBI::errstr 这相当于 $h->errstr,其中 $h 是任何句柄类型,例如 $dbh、$sth 或 $drh。这将返回来自最后调用的 DBI 方法的本机数据库引擎错误消息。 |
8 |
$dbh->断开连接() 此例程关闭先前通过调用 DBI->connect() 打开的数据库连接。 |
连接到数据库
以下 Perl 代码显示了如何连接到现有数据库。如果数据库不存在,则会创建数据库,最后返回一个数据库对象。
#!/usr/bin/perl use DBI; use strict; my $driver = "SQLite"; my $database = "test.db"; my $dsn = "DBI:$driver:dbname=$database"; my $userid = ""; my $password = ""; my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr; print "Opened database successfully\n";
现在,让我们运行上面的程序在当前目录中创建数据库 test.db。您可以根据您的要求更改路径。将上述代码保留在 sqlite.pl 文件中并执行,如下所示。如果数据库创建成功,则会显示以下消息 -
$ chmod +x sqlite.pl $ ./sqlite.pl Open database successfully
创建一个表
下面的 Perl 程序用于在之前创建的数据库中创建一个表。
#!/usr/bin/perl use DBI; use strict; my $driver = "SQLite"; my $database = "test.db"; my $dsn = "DBI:$driver:dbname=$database"; my $userid = ""; my $password = ""; my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr; print "Opened database successfully\n"; my $stmt = qq(CREATE TABLE COMPANY (ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(50), SALARY REAL);); my $rv = $dbh->do($stmt); if($rv < 0) { print $DBI::errstr; } else { print "Table created successfully\n"; } $dbh->disconnect();
当执行上述程序时,它将在 test.db 中创建 COMPANY 表,并显示以下消息 -
Opened database successfully Table created successfully
注意- 如果您在任何操作中看到以下错误 -
DBD::SQLite::st execute failed: not an error(21) at dbdimp.c line 398
在这种情况下,打开DBD-SQLite 安装中提供的dbdimp.c 文件,找到sqlite3_prepare()函数,并将其第三个参数更改为-1而不是 0。最后,使用make安装 DBD::SQLite并执行make install来解决问题。
插入操作
以下 Perl 程序显示如何在上例中创建的 COMPANY 表中创建记录。
#!/usr/bin/perl use DBI; use strict; my $driver = "SQLite"; my $database = "test.db"; my $dsn = "DBI:$driver:dbname=$database"; my $userid = ""; my $password = ""; my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr; print "Opened database successfully\n"; my $stmt = qq(INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (1, 'Paul', 32, 'California', 20000.00 )); my $rv = $dbh->do($stmt) or die $DBI::errstr; $stmt = qq(INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (2, 'Allen', 25, 'Texas', 15000.00 )); $rv = $dbh->do($stmt) or die $DBI::errstr; $stmt = qq(INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (3, 'Teddy', 23, 'Norway', 20000.00 )); $rv = $dbh->do($stmt) or die $DBI::errstr; $stmt = qq(INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (4, 'Mark', 25, 'Rich-Mond ', 65000.00 );); $rv = $dbh->do($stmt) or die $DBI::errstr; print "Records created successfully\n"; $dbh->disconnect();
当执行上述程序时,它将在 COMPANY 表中创建给定的记录,并显示以下两行 -
Opened database successfully Records created successfully
选择操作
以下 Perl 程序显示如何从上例中创建的 COMPANY 表中获取并显示记录。
#!/usr/bin/perl use DBI; use strict; my $driver = "SQLite"; my $database = "test.db"; my $dsn = "DBI:$driver:dbname=$database"; my $userid = ""; my $password = ""; my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr; print "Opened database successfully\n"; my $stmt = qq(SELECT id, name, address, salary from COMPANY;); my $sth = $dbh->prepare( $stmt ); my $rv = $sth->execute() or die $DBI::errstr; if($rv < 0) { print $DBI::errstr; } while(my @row = $sth->fetchrow_array()) { print "ID = ". $row[0] . "\n"; print "NAME = ". $row[1] ."\n"; print "ADDRESS = ". $row[2] ."\n"; print "SALARY = ". $row[3] ."\n\n"; } print "Operation done successfully\n"; $dbh->disconnect();
当执行上述程序时,将产生以下结果。
Opened database successfully ID = 1 NAME = Paul ADDRESS = California SALARY = 20000 ID = 2 NAME = Allen ADDRESS = Texas SALARY = 15000 ID = 3 NAME = Teddy ADDRESS = Norway SALARY = 20000 ID = 4 NAME = Mark ADDRESS = Rich-Mond SALARY = 65000 Operation done successfully
更新操作
以下 Perl 代码显示如何使用 UPDATE 语句更新任何记录,然后从 COMPANY 表中获取并显示更新的记录。
#!/usr/bin/perl use DBI; use strict; my $driver = "SQLite"; my $database = "test.db"; my $dsn = "DBI:$driver:dbname=$database"; my $userid = ""; my $password = ""; my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr; print "Opened database successfully\n"; my $stmt = qq(UPDATE COMPANY set SALARY = 25000.00 where ID=1;); my $rv = $dbh->do($stmt) or die $DBI::errstr; if( $rv < 0 ) { print $DBI::errstr; } else { print "Total number of rows updated : $rv\n"; } $stmt = qq(SELECT id, name, address, salary from COMPANY;); my $sth = $dbh->prepare( $stmt ); $rv = $sth->execute() or die $DBI::errstr; if($rv < 0) { print $DBI::errstr; } while(my @row = $sth->fetchrow_array()) { print "ID = ". $row[0] . "\n"; print "NAME = ". $row[1] ."\n"; print "ADDRESS = ". $row[2] ."\n"; print "SALARY = ". $row[3] ."\n\n"; } print "Operation done successfully\n"; $dbh->disconnect();
当执行上述程序时,将产生以下结果。
Opened database successfully Total number of rows updated : 1 ID = 1 NAME = Paul ADDRESS = California SALARY = 25000 ID = 2 NAME = Allen ADDRESS = Texas SALARY = 15000 ID = 3 NAME = Teddy ADDRESS = Norway SALARY = 20000 ID = 4 NAME = Mark ADDRESS = Rich-Mond SALARY = 65000 Operation done successfully
删除操作
以下 Perl 代码显示如何使用 DELETE 语句删除任何记录,然后从 COMPANY 表中获取并显示剩余记录 -
#!/usr/bin/perl use DBI; use strict; my $driver = "SQLite"; my $database = "test.db"; my $dsn = "DBI:$driver:dbname=$database"; my $userid = ""; my $password = ""; my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr; print "Opened database successfully\n"; my $stmt = qq(DELETE from COMPANY where ID = 2;); my $rv = $dbh->do($stmt) or die $DBI::errstr; if( $rv < 0 ) { print $DBI::errstr; } else { print "Total number of rows deleted : $rv\n"; } $stmt = qq(SELECT id, name, address, salary from COMPANY;); my $sth = $dbh->prepare( $stmt ); $rv = $sth->execute() or die $DBI::errstr; if($rv < 0) { print $DBI::errstr; } while(my @row = $sth->fetchrow_array()) { print "ID = ". $row[0] . "\n"; print "NAME = ". $row[1] ."\n"; print "ADDRESS = ". $row[2] ."\n"; print "SALARY = ". $row[3] ."\n\n"; } print "Operation done successfully\n"; $dbh->disconnect();
当执行上述程序时,将产生以下结果。
Opened database successfully Total number of rows deleted : 1 ID = 1 NAME = Paul ADDRESS = California SALARY = 25000 ID = 3 NAME = Teddy ADDRESS = Norway SALARY = 20000 ID = 4 NAME = Mark ADDRESS = Rich-Mond SALARY = 65000 Operation done successfully