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

My code: ``` $sth = $dbh->prepare($sql); $sth->execute(); while(my @tmp = $sth->${fetch_type}()){ if($interrupt){$sth->finish;$interrupt=0;return 2}; for my $i(0..$#alias_title){ my $val_size = length($tmp[$i]); $col_size{$alias_title[$i]} = $val_size if($val_size > $col_size{$alias_title[$i]}); } $rows += 1;...

Via the changelog we found the maybe relevant change: https://metacpan.org/diff/file?target=MJEVANS/DBD-Oracle-1.80/&source=ZARQUON%2FDBD-Oracle-1.76#dbdimp.c We use it in a rather complex internal tool and the segfault sometimes happens at the very end. Still we...

The installer script reports that sqlplus cannot be run and various .dylibs loaded because "the developer cannot be verified". Probably worth documenting that it's Mac a Mac security thing. And...

This changes the way things are done during login6 (connect). In particular: 1. OCIEnv is cached based on character sets and mode. One copy is used in all threads (so...

Here's a sample script, easy enough to adapt into something that will "work on your machine": ``` use warnings; use strict; use Test::More; use Test::Exception; my $dbh = DBI->connect(... your...

cppcheck found the following errors: ~~~~ [oci8.c:2335]: (error) Buffer is accessed out of bounds: s_tz_hour [oci8.c:2338]: (error) Buffer is accessed out of bounds: s_tz_min ~~~~ https://github.com/pythian/DBD-Oracle/blob/master/oci8.c#L2335 https://github.com/pythian/DBD-Oracle/blob/master/oci8.c#L2338

Hi, a test in `t/25plsql.t:179` is failing. Probably a declared buffer is too small to increase it. ``` # Failed test 'expected return length' # at t/25plsql.t line 179. #...

``` cc -c -I/usr/include/oracle/19.13/client64 -I/pro/lib/perl5/site_perl/5.28.0/x86_64-linux-thread-multi-ld/auto/DBI -D_REENTRANT -D_GNU_SOURCE -fPIC -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -DVERSION=\"1.00\" -DXS_VERSION=\"1.00\" -fPIC "-I/pro/lib/perl5/5.28.0/x86_64-linux-thread-multi-ld/CORE" -Wall -Wno-comment -DUTF8_SUPPORT -DORA_OCI_VERSION=\"19.13.0.0\" -DORA_OCI_102 -DORA_OCI_112 dbdimp.c dbdimp.c: In...

The following is the output from `perl Makefile.PL`, run on RHEL 7.9, having previously set `$ORACLE_HOME`, `$PATH` (to include `$ORACLE_HOME`), and `$LD_LIBRARY_PATH` in order to find my copy of the...

We can probably start with https://github.com/perl5-dbi/DBD-mysql/blob/master/appveyor.yml