hey,
I've been writing a DBD plugin for DBI, and was wondering why the DBI::db object
that I've been creating doesn't show its contents either via Dumper or via 'x'
in
the database.
Is this a consequence of how DBI is programmed? Would it be easy to change to
remove
this limitation? After all
On Mon, Oct 21, 2002 at 05:34:11PM -0500, Stephen Clouse wrote:
> This is not a DBD::Oracle bug, but an OCI "feature" (see MetaLink note
> 1009209.6). Oracle strips all trailing whitespace off a variable bound as
> VARCHAR2 (which is DBD::Oracle's default). Since the value is nothing but
> white
hey all,
I've found a bug in DBI-1.12/DBD::Oracle-1.30 relating to binding variables.
With the following table
# create table a (aa int, bb char(20) not null, c char(5));
The following bind fails:
use DBI;
my $dbh = DBI->connect("dbi:Oracle:MDSSTEST", "", "");
my $argh = $dbh->prepare