X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/8f3e8a0254bc848d02958cc5e1fcdf600d5632a8..9c5f94c0359a8f2c0dba93b5e9bdef99f332fcc8:/SL/DBUtils.pm diff --git a/SL/DBUtils.pm b/SL/DBUtils.pm index 89761443b..d060bcb8e 100644 --- a/SL/DBUtils.pm +++ b/SL/DBUtils.pm @@ -1,10 +1,12 @@ package SL::DBUtils; +use SL::Util qw(trim); + require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(conv_i conv_date conv_dateq do_query selectrow_query do_statement - dump_query quote_db_date + dump_query quote_db_date like selectfirst_hashref_query selectfirst_array_query selectall_hashref_query selectall_array_query selectall_as_map @@ -30,7 +32,9 @@ sub conv_b { sub conv_date { my ($value) = @_; - return (defined($value) && "$value" ne "") ? $value : undef; + return undef if !defined $value; + $value = trim($value); + return $value eq "" ? undef : $value; } sub conv_dateq { @@ -344,9 +348,9 @@ sub add_token { id => \&conv_i, bool => \&conv_b, date => \&conv_date, - start => sub { $_[0] . '%' }, - end => sub { '%' . $_[0] }, - substr => sub { '%' . $_[0] . '%' }, + start => sub { trim($_[0]) . '%' }, + end => sub { '%' . trim($_[0]) }, + substr => sub { like($_[0]) }, ); my $_long_token = sub { @@ -382,6 +386,12 @@ sub add_token { return ($token, @vals); } +sub like { + my ($string) = @_; + + return "%" . SL::Util::trim($string // '') . "%"; +} + 1; @@ -455,6 +465,12 @@ Database version of conv_date. Quotes STR before returning. Returns 'NULL' if ST Treats STR as a database date, quoting it. If STR equals current_date returns an escaped version which is treated as the current date by Postgres. Returns 'NULL' if STR is empty. +=item like STR + +Turns C into an argument suitable for SQL's C and C +operators by Trimming the string C (removes leading and trailing +whitespaces) and prepending and appending C<%>. + =back =head2 QUERY FUNCTIONS