mysql - Perl 中的多行 MySQL

标签 mysql perl

我试图将命令传递到我的数据库(MariaDB/MySQLi),但无论我尝试什么,Perl 的 DBI 都会给我一个错误。问题是我可以在 phpMyAdmin 中正常执行 MySQL,不会出现错误。我收到的错误是:

DBD::mysql::st execute failed: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near SELECT DISTINCT t.bf FROM wrpec t JOIN wrpec r ON t.path LIKE r.path || '%' at line 2 at retrieve-includes.pl line 20.

DBD::mysql::st fetchrow_array failed: fetch() without execute() at retrieve-includes.pl line 22.

完整的测试文件(显然是假数据库)如下。

#!/usr/bin/perl
use strict;
use warnings;

use DBI;
use Data::Dumper;

my $dsn = "DBI:mysql:database=mydatabase;host=machine";
my $dbh = DBI->connect($dsn, 'root', '') or die "Couldn't connect to database: " . DBI->errstr;;

my $request_includes = "
SET sql_mode = PIPES_AS_CONCAT;
SELECT DISTINCT t.bf
FROM `wrpec` t
JOIN `wrpec` r
ON t.path LIKE r.path || '%'
WHERE r.bf = 'WRPECsmain\%hd' AND t.has_tree;";

my $sth = $dbh->prepare($request_includes) or die "Couldn't prepare statement: " . $dbh->errstr;
$sth->execute();

while (my @row = $sth->fetchrow_array()) {
   print Dumper(\@row);
}

$sth->finish();

我还尝试了一些我在网上找到的想法:使用清理子将所有空白字符替换为硬空格,以确保您传递的是字符串,并且我也尝试了这种表示法(我忘记了名称) )但它也不起作用(同样的错误)。

my $request_includes = <<"REQUEST_INCLUDES";

SET sql_mode = PIPES_AS_CONCAT;
SELECT DISTINCT t.bf
FROM `wrpec` t
JOIN `wrpec` r
ON t.path LIKE r.path || '%'
WHERE r.bf = 'WRPECsmain\%hd' AND t.has_tree;
REQUEST_INCLUDES

最佳答案

您收到 SQL 语法错误,因为默认情况下 DBD::mysql doesn't allow you to execute multiple statements at once 。您应该运行两个单独的 DBI 命令:

$dbh->do( q{SET sql_mode = 'PIPES_AS_CONCAT'} );

my $sth = $dbh->prepare(q{
    SELECT DISTINCT t.bf
    FROM `wrpec` t
    JOIN `wrpec` r
    ON t.path LIKE r.path || '%'
    WHERE r.bf = 'WRPECsmain\%hd' AND t.has_tree
});
<小时/>

I was trying to create a script that works on MySQL as wel as PostgreSQL without changes.

启用 MySQL 的 ANSI mode并双引号您的标识符:

$dbh->do( q{SET sql_mode = 'ANSI'} ) if $mysql;

my $sth = $dbh->prepare(q{
    SELECT DISTINCT t.bf
    FROM "wrpec" t
    JOIN "wrpec" r
    ON t.path LIKE r.path || '%'
    WHERE r.bf = 'WRPECsmain\%hd' AND t.has_tree
});

但是还有其他一些问题:

  • 未转义 _%r.path将被解释为通配符
  • 'foo' LIKE 'foo%'是真的

仅获取 t.path 所在的行是 r.path 的前缀,但它们不相等,请执行以下操作:

SELECT DISTINCT t.bf
FROM "wrpec" t
JOIN "wrpec" r
  ON POSITION(t.path IN r.path) = 1
  AND t.path != r.path
WHERE r.bf = 'WRPECsmain\%hd'
  AND t.has_tree

关于mysql - Perl 中的多行 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42562064/

相关文章:

perl - Windows 10 64 位上的 Strawberry Perl Firebird 驱动程序和模块

MySQL 左连接和右连接优化

python插入和检索二进制数据到mysql

php - 使用php删除表的特定行

apache - 为什么我在使用此 Perl CGI 脚本时收到 "permission denied"错误?

perl - VIM 7.2 `:perldo` 和多个表达式的脚本问题

php - 没有收到要导入的数据

mysql - sql查询根据时间差添加行

perl - 是否有与 python 的 optparse.OptionParser 等效的 perl 模块?

perl - 我如何告诉 WWW::Mechanize 忽略安全 cookie?