| Thread | Last Post | Replies |
|
| DBD::Sybase and threading. | 30 Dec 2003 18:34 GMT | 1 |
A quick test of the threads.pm package with perl 5.8.1 and DBD::Sybase shows that DBD::Sybase is NOT thread-safe at this point. The problem lies with the calls to cs_ctx_alloc() and ct_config() which are both NOT thread-safe.
|
| CTlib problem | 29 Dec 2003 22:35 GMT | 1 |
We have developed a CGI app that works fine on our dev web machine, but when we try to run it on our production web site, we get the following errors: The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: Can't ...
|
| DBD installation problem | 29 Dec 2003 12:17 GMT | 2 |
I have a problem with the installation of DBD::Oracle 1.14 on Solaris 9. I have reinstalled the current stable version of perl 5.8.2 and it is functional. I reinstalled DBI 1.39 with no problem. I even tried changing the make file to point to the 32bit libraries in Oracle,
|
| RE: Ctlib - ct_sql question | 22 Dec 2003 16:11 GMT | 1 |
To split SQL at 'go' I use $dbh->do($_) foreach grep /\S/, split /^\s*go\s*$/m, $sql; You'd need to do something a bit different if you wanted to return result sets from the SQL rather than just 'do'ing it.
|
| What's the best option for BCP | 17 Dec 2003 19:24 GMT | 3 |
Michael (or anyone else who wants to answer)... Previously I've always used Sybperl for BCPing into ASE servers; however, it's been more than 3 years since I've last had to do it. Is Sybperl still the best method for BCPing in inside Perl scripts on Unix and possibly NT?
|
| Sybperl on NT with Activeperl 5.6 | 17 Dec 2003 16:54 GMT | 3 |
Michael, I know your notes state that Perlmonk has sybperl available for download for the NT platform, but I could only find the DBD libraries there. Can Sybperl be compiled with gcc on Windows? Or does anyone have a compiled version?
|
| DBD::Oracle: NUMBER type | 16 Dec 2003 14:10 GMT | 1 |
Rerunning this test <http://www.xray.mpe.mpg.de/mailing-lists/dbi/2001-03/msg00626.html> against an Oracle 9.2.0.4 results in TYPE PREC SCALE NAME
|
| Subclassing DBI - architecture question | 11 Dec 2003 23:59 GMT | 1 |
Hello fellow coders, I have successfully subclassed DBI with the intent of overridding the connect method so that I can retrieve the password from my password server. One of my primary considerations in subclassing DBI was to not
|
| DBD::Sybase 1.01 & queries against temp table | 11 Dec 2003 19:39 GMT | 4 |
Due to an OS upgrade, I recently upgraded DBD::Sybase from 0.95 to 1.01 along with a change of FreeTDS from 0.53 to 0.62-dev. (MS SQL server; TDS version 7.0). I had a bunch of previously written perl query scripts that created
|
| [PATCH]Misleading PL/SQL Example for Binding Cursors | 10 Dec 2003 15:32 GMT | 2 |
The example given for returning a cursor from a function is inconsistent with the surrounding example code for handling bound cursors. The attached patches for DBD::Oracle 1.14 and 1.15 of 23 Sep 2003 correct the inconsistency and add more detail.
|
| RE: Intresting case of SQL Injection | 05 Dec 2003 16:06 GMT | 2 |
Jenda Krynicky <Jenda@Krynicky.cz> wrote:
>> die "bad value $foo" if $foo =~ tr/'//; >> $sql = "select * from a where x = '$foo'"; >>in this particular case you can assume that in SQL only another ' |