| DBIx-InsertHash documentation | Contained in the DBIx-InsertHash distribution. |
DBIx::InsertHash - insert/update a database record from a hash
version 0.011
use DBIx::InsertHash;
# insert
DBIx::InsertHash->insert({USERNAME => 'foo',
PASSWORD => 'bar',
}, 'table', $dbh);
# update
DBIx::InsertHash->update({PASSWORD => 'foobar'},
[12],'USERID = ?',
'table', $dbh);
# constructor usage
my $dbix = DBIx::InsertHash->new(quote => 1,
dbh => $dbh,
table => 'table',
where => 'USERID = ?',
);
$dbix->insert($hash);
$dbix->update($hash, [12]);
If you have data in a hash (which keys are matching the column names) and want to insert it in a database, then this is the right module for you. It frees you from having to construct the SQL statement.
It really only does a simple insert (or update) from a hash into a single table. For anything beyond I suggest a ORM (object-relational mapper), like Rose::DB::Object or DBIx::Class.
Constructor (optional). Only needed to store default values or set quoting options.
Turn quoting of column names on (off by default). This switch affects all column names (see quote_func below to only quote specific names).
If you use MySQL, quoting is recommended. It is needed when column names clash with reserved words.
Quoting character/string (default is backtick).
This function is given the column name as first (and only) parameter. It has to return a boolean, indicating if the column has to be quoted.
The following example uses SQL::ReservedWords:
my $quote = sub { SQL::ReservedWords->is_reserved($_[0]) };
my $dbix = DBIx::InsertHash->new(quote_func => $quote);
$dbix->insert(...);
Insert hash in database. Returns last_insert_id.
Row data. The keys have to match with the column names of your table. This parameter is mandatory. If an empty hashref is given, no record is inserted and a warning is given.
Table name. If this parameter is missing, the object default (see new is used). Otherwise it dies.
DBI database handle (you have to connect yourself). If this parameter is missing, the object default (see new) is used). Otherwise it dies.
Update record from hash. Returns do.
Row data. The keys have to match with the column names of your table. This parameter is mandatory. If an empty hashref is given, no record is inserted and a warning is given.
Bind values for the WHERE clause. If
you do not use or need them, just pass a false value (undef or empty
string) or an empty arrayref. This parameter is optional and has no object
defaults.
Where clause (with optional placeholders ?). If this parameter is
missing, the object default (see new) is used. Otherwise it dies.
Table name. If this parameter is missing, the object default (see new is used). Otherwise it dies.
DBI database handle (you have to connect yourself). If this parameter is missing, the object default (see new) is used). Otherwise it dies.
http://github.com/uwe/dbix-inserthash/tree/master
Uwe Voelker, <uwe.voelker@gmx.de>
| DBIx-InsertHash documentation | Contained in the DBIx-InsertHash distribution. |
package DBIx::InsertHash; our $VERSION = '0.011';
use strict; use warnings; use Carp qw(carp croak); use base 'Class::Accessor::Fast'; __PACKAGE__->mk_accessors(qw(quote quote_char quote_func dbh table where ));
sub new { my ($class, %arg) = @_; $arg{quote_char} ||= '`'; return $class->SUPER::new(\%arg); }
sub insert { my ($self, $data, $table, $dbh) = @_; # object defaults if (ref $self) { $table ||= $self->table; $dbh ||= $self->dbh; } # warnings/errors unless (%$data) { carp 'No data (empty hash)'; return; } croak 'No table name' unless $table; croak 'No DBI handle' unless $dbh; # sort by hash key (predictable results) my @column = sort keys %$data; my @value = map { $data->{$_} } @column; # quote column names? if (ref $self and ($self->quote or $self->quote_func)) { foreach my $col (@column) { next unless $self->quote or $self->quote_func->($col); $col = $self->quote_char . $col . $self->quote_char; } } my $sql = 'INSERT INTO '.$table.' ('; $sql .= join(', ', @column).') VALUES ('; $sql .= join(', ', ('?') x (scalar @column)).')'; $dbh->do($sql, {}, @value); return $dbh->last_insert_id(undef, undef, $table, undef); }
sub update { my ($self, $data, $vars, $where, $table, $dbh) = @_; my @vars = ($vars ? @$vars : ()); # object defaults if (ref $self) { $where ||= $self->where; $table ||= $self->table; $dbh ||= $self->dbh; } unless (%$data) { carp 'No data (empty hash)'; return; } croak 'No where clause' unless $where; croak 'No table name' unless $table; croak 'No DBI handle' unless $dbh; # sort by hash key (predictable results) my @column = sort keys %$data; my @value = map { $data->{$_} } @column; # quote column names? if (ref $self and ($self->quote or $self->quote_func)) { foreach my $col (@column) { next unless $self->quote or $self->quote_func->($col); $col = $self->quote_char . $col . $self->quote_char; } } my $sql = 'UPDATE '.$table.' SET '; $sql .= join(', ', map { "$_ = ?" } @column).' WHERE '.$where; return $dbh->do($sql, {}, @value, @vars); } 1; __END__