Re: DBD::Oracle -- NULL LOB Locator is not null

2007-05-29 Thread John Scoles
I think there was a patch for that one submitted but not released a while ago. I will test this against the the current version and see what I get. Sven Miller [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] (DBD::Oracle version 1.17) Given the following: my $sLobLocator; my

DBD::Oracle -- NULL LOB Locator is not null

2007-05-24 Thread Sven Miller
(DBD::Oracle version 1.17) Given the following: my $sLobLocator; my $hSQL = $hDB-prepare(q{ BEGIN :lob := NULL; END; }, { ora_auto_lob = 0 }); $hSQL-bind_param_inout( ':lob', \$sLobLocator, 0, { ora_type = ORA_BLOB } ); $hSQL-execute; print \$sLobLocator = $sLobLocator\n; print