⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 select2

📁 一个俄国人实现的数据库系统
💻
字号:
#!/usr/local/bin/perl -wuse strict;use DBI;my $host='localhost';my $port=6100;my $dbh = DBI->connect(  "dbi:Gigabase:host=$host;port=6100",    "guest", "guest",{AutoCommit=>1})    || die ;my $select=$dbh->prepare('select * from r where one > 5') || die $dbh->errstr;print "prepared\n";$select->execute() || die $select->errstr;while ( my($a,$b,$c,$d)=$select->fetchrow_array) {  print "$a, $b, $c, $d\n";}$dbh->disconnect;print "disconnected\n";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -