DBD-Oracle icon indicating copy to clipboard operation
DBD-Oracle copied to clipboard

Oracle database driver for the DBI module

Results 46 DBD-Oracle issues
Sort by recently updated
recently updated
newest added

Compile of DBD::Oracle 1.90 failing with GCC 14 on Fedora 40, at this point: ``` gcc -c -I/usr/include/oracle/19.23/client64 -I/usr/lib64/perl5/vendor_perl/auto/DBI -D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang...

I added Test::NoWarnings but it still wasn't installing the module. Turns out there was an ancient condition that modified PREREQ_PM. I removed this since it will probably never be true...

Prior to Oracle 19.25, this works: ` use DBI; use DBD::Oracle qw(:ora_session_modes); $dbh = DBI->connect('DBI:Oracle:', '/', '', {ora_session_mode => ORA_SYSDBA, RaiseError => 1}) or die "Cannot connect to Oracle." ....

The boolean type in 23ai is not recognized. Should be mapped to SQL_BOOLEAN, eg DBI::Shell added support for boolean formatting and uses SQL_BOOLEAN to identify such column. ```sql select dump(to_boolean(1))...

This is tested with DBD::Oracle from 1.83 to current git head. And with Oracle Client Library versions from 19.4 to 23.4. The following test application omits the guts of the...