DBD-Oracle
DBD-Oracle copied to clipboard
Oracle database driver for the DBI module
I have often used a SID to connect, but apparently Oracle 12c and later added support for Net Services, which are also named, but not by `sid=$name`. I learned of...
This is very similar to issue 15 (which was RT 94232) and was causes by the fix to RT91698 but far worse: ``` use strict; use warnings; use DBI; use...
I found an error either in the documentation or in the code. According to the examples from the DBD :: Oracle documentation, it is allowed to { use **ora_type =>...
https://github.com/perl5-dbi/DBD-Oracle/blob/cfc917669469cb841e3c953e7ea544aa3a3ba71e/lib/DBD/Oracle.pm#L938 The single quote might be a typo
Even though i literally never use windows, hardcoded forward slashes always bother me. I also have a soft spot for caring about VMS which has its own fun and interesting...
Pasted from RT: I've not tested this yet but I thought it was worth reporting and I'll look at it myself. I copied DBD::Oracle's code for execute_for_fetch as a starter...
I've written an error handler using HandleSetErr which sets $state based on $err to make Oracle SQLSTATE compatible as OCI doesn't return SQLSTATE since version 8.x (for whatever reason). Are...
``` #!/usr/bin/env perl use warnings; use strict; use Data::Dumper; use DBI qw(neat :sql_types); use DBD::Oracle qw(:ora_types); my $h = DBI->connect('dbi:Oracle:host=aaa.bbb.local;sid=xxx', 'xxx','xxx', {RaiseError => 1}); my $s = $h->prepare(q/select 1,2 from...
Copied from https://rt.cpan.org/Ticket/Display.html?id=90068 I'm reporting this on behalf of Jarek Lubczyński as I haven't got the tuits right now to look at and hope someone else can pick it up....
Copied from https://rt.cpan.org/Ticket/Display.html?id=67434. Trying to set ora_type to DBD::Oracle::ORA_DATE results in: Can't bind :p1, ora_type 12 not supported by DBD::Oracle at /home/ahartmai/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux-thread-multi/DBI.pm line 1858.