SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

perl-SQL-Abstract rpm build for : OpenSuSE. For other distributions click perl-SQL-Abstract.

Name : perl-SQL-Abstract
Version : 1.86 Vendor : obs://build_opensuse_org/devel:kanku
Release : 29.1 Date : 2018-11-08 16:08:05
Group : Development/Libraries/Perl Source RPM : perl-SQL-Abstract-1.86-29.1.src.rpm
Size : 0.25 MB
Packager : (none)
Summary : Generate SQL from Perl data structures
Description :
This module was inspired by the excellent DBIx::Abstract. However, in using
that module I found that what I really wanted to do was generate SQL, but
still retain complete control over my statement handles and use the DBI
interface. So, I set out to create an abstract SQL generation module.

While based on the concepts used by DBIx::Abstract, there are several
important differences, especially when it comes to WHERE clauses. I have
modified the concepts used to make the SQL easier to generate from Perl
data structures and, IMO, more intuitive. The underlying idea is for this
module to do what you mean, based on the data structures you provide it.
The big advantage is that you don\'t have to modify your code every time
your data changes, as this module figures it out.

To begin with, an SQL INSERT is as easy as just specifying a hash of
\'key=value\' pairs:

my %data = (
name => \'Jimbo Bobson\',
phone => \'123-456-7890\',
address => \'42 Sister Lane\',
city => \'St. Louis\',
state => \'Louisiana\',
);

The SQL can then be generated with this:

my($stmt, AATTbind) = $sql->insert(\'people\', \\%data);

Which would give you something like this:

$stmt = \"INSERT INTO people
(address, city, name, phone, state)
VALUES (?, ?, ?, ?, ?)\";
AATTbind = (\'42 Sister Lane\', \'St. Louis\', \'Jimbo Bobson\',
\'123-456-7890\', \'Louisiana\');

These are then used directly in your DBI code:

my $sth = $dbh->prepare($stmt);
$sth->execute(AATTbind);

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/kanku:/perl/SLES_12.3/noarch

Content of RPM  Changelog  Provides Requires

Hmm ... It's impossible ;-) This RPM doesn't exist on any FTP server

Provides :
perl(DBIx::Class::Storage::Debug::PrettyPrint)
perl(SQL::Abstract)
perl(SQL::Abstract::Test)
perl(SQL::Abstract::Tree)
perl-SQL-Abstract

Requires :
rpmlib(CompressedFileNames) <= 3.0.4-1
perl(Moo) => 2.000001
rpmlib(PayloadIsLzma) <= 4.4.6-1
perl(Text::Balanced) => 2.00
perl(:MODULE_COMPAT_5.18.2)
perl(Hash::Merge) => 0.12
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
perl(Sub::Quote) => 2.000001
perl(MRO::Compat) => 0.12


Content of RPM :
/usr/lib/perl5/vendor_perl/5.18.2/DBIx
/usr/lib/perl5/vendor_perl/5.18.2/DBIx/Class
/usr/lib/perl5/vendor_perl/5.18.2/DBIx/Class/Storage
/usr/lib/perl5/vendor_perl/5.18.2/DBIx/Class/Storage/Debug
/usr/lib/perl5/vendor_perl/5.18.2/DBIx/Class/Storage/Debug/PrettyPrint.pm
/usr/lib/perl5/vendor_perl/5.18.2/SQL
/usr/lib/perl5/vendor_perl/5.18.2/SQL/Abstract
/usr/lib/perl5/vendor_perl/5.18.2/SQL/Abstract.pm
/usr/lib/perl5/vendor_perl/5.18.2/SQL/Abstract/Test.pm
/usr/lib/perl5/vendor_perl/5.18.2/SQL/Abstract/Tree.pm
/usr/lib/perl5/vendor_perl/5.18.2/x86_64-linux-thread-multi
/usr/share/doc/packages/perl-SQL-Abstract
/usr/share/doc/packages/perl-SQL-Abstract/Changes
/usr/share/doc/packages/perl-SQL-Abstract/README
/usr/share/doc/packages/perl-SQL-Abstract/examples
/usr/share/doc/packages/perl-SQL-Abstract/examples/console.pl
/usr/share/doc/packages/perl-SQL-Abstract/examples/dbic-console.pl
/usr/share/doc/packages/perl-SQL-Abstract/examples/sqla-format
/usr/share/licenses/perl-SQL-Abstract
/usr/share/licenses/perl-SQL-Abstract/LICENSE
/usr/share/man/man3/DBIx::Class::Storage::Debug::PrettyPrint.3pm.gz
/usr/share/man/man3/SQL::Abstract.3pm.gz
/usr/share/man/man3/SQL::Abstract::Test.3pm.gz
/usr/share/man/man3/SQL::Abstract::Tree.3pm.gz

 
ICM