NAME

SQL::Exec::Statement - Prepared statements support for SQL::Exec

SEE ALSO

For the documentation of this distribution please check the SQL::Exec module.

COPYRIGHT & LICENSE

Copyright 2013 © Mathias Kende. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

sub __bind_params { my ($c, @p) = @_;

$c->check_conn() or return;

if (not $c->low_level_bind(@p)) {
	$c->low_level_finish();
	return;
}

return $c;
}

sub bind_params { my $c = &SQL::Exec::check_options or return; return $c->__bind_params(@_); }