| Thread | Last Post | Replies |
|
| [ANNOUNCE] Text-CSV_XS 0.27 | 31 May 2007 17:45 GMT | 1 |
2007-05-31 0.27 - H.Merijn Brand <h.m.brand@xs4all.nl> * checked with perlcritic (still works under 5.00504) so 3-arg open cannot be used (except in the docs) * 3-arg open in docs too
|
| Error on installing DBD::DB2 module | 30 May 2007 21:05 GMT | 1 |
I am trying to install the DBD::DB2 module on my Linux machine. I have installed Perl 5.8.5, IBM DB2 v8.1 , DBI v1.56 . But when i tried to test before install the perl module DBD::DB2 , i got the below error. I would like to know how to resolve this issue.
|
| can't connected to DB | 30 May 2007 09:23 GMT | 2 |
I have simple script , trying to get connection to DB. #!/usr/bin/perl use DBI; my $database="billing";
|
| DBD::Oracle -- NULL LOB Locator is not "null" | 29 May 2007 19:28 GMT | 2 |
(DBD::Oracle version 1.17) Given the following: my $sLobLocator; my $hSQL = $hDB->prepare(q{
|
| Any possiblity to run the perl scripts for both oracle 8i and 9i environments from the same server. | 27 May 2007 06:50 GMT | 1 |
> Hi, > > Initially we had only oracle 8i setup and used DBD-Oracle-1.08 & > DBI-1.19 as perl interface. |
| RFC: The future of Text::CSV_XS | 26 May 2007 06:52 GMT | 2 |
I have been digging a bit to find what people consider loose ends in Text::CSV_XS, and tried to summarize that (in no particular order) in the new TODO list. Here "TODO" gives no guarantee that it will be done, nor on any implementation or API that it might suggest, it is there now
|
| Problem with Large Query Returns from MS-SQL | 25 May 2007 18:10 GMT | 2 |
I am writing an application that is using DBI to access a MS SQL database hosted on a remote server. I think I am having trouble with larger result sets. For example:
|
| [CDBI] find_or_create() usage or feature request | 25 May 2007 17:10 GMT | 3 |
I like the functionality of find_or_create() however, i think it could be better if it allowed you specify the search criteria and the actual record data as seperate parameters like: ## find_or_create(\%search_criteria [,\%new_record]);
|
| Clarification on DBI module | 24 May 2007 05:44 GMT | 6 |
Can you please clarify my doubts regarding DBI perl module used for database connection. In my environment I am using single module to prepare and execute the sql queries. The sql query can have bind variables or they may not have. In order to improve performance i used ...
|
| connect_cached resets %attr to defaults? | 23 May 2007 09:11 GMT | 1 |
Does connect_cached() reset attributes each time it's called? Even if just returning an active $dbh? On a CDBI application I need to access multiple databases with the same schema. So my initial attempt was:
|
| Memory leak, DBI 1.55 + DBD::ODBC 1.13 + MS SQL 2000 | 22 May 2007 13:15 GMT | 3 |
Recently I have bumped into a memory leak happening in DBI. Running DBI version 1.55, DBD::ODBC version 1.13 on Windows XP SP2, Active State Active Perl 5.8 build 819. More comprehensive build info at the bottom of this email.
|
| MS SQL errors in my script | 21 May 2007 19:41 GMT | 1 |
I am trying to write a script that connects to a remote MS SQL database. I have set up dsn on my server before and have no problem connecting. But something is working this time. I am pasting my script and the error messages below. If nay one has any
|
| How to set $@ upon failure of eval | 18 May 2007 22:42 GMT | 2 |
Quick question - how do I ensure from C something that I eval on the perl side, if it fails sets $@? Say for instance, I have something that checks something in C, I return in a way that eval/$@ is set. Thanks in advance!
|
| Enc: DBD::DB2 SQLGetInfo problem | 18 May 2007 00:10 GMT | 1 |
I´ve just installed DBD::DB2 to access a DB2 database, but I always get the following message when I run a SELECT query: DBD::DB2::db prepare failed: Error calling SQLGetInfo at ... Although this message, I receive the result of the query.
|
| temporary table "disapears" | 16 May 2007 13:04 GMT | 11 |
I am using DBI 1.51 and DBD::ODBC 1.13, connecting to MSSQL2005. Executing following statements: $sth = $dbh->prepare('create table #foo (a int not null)'); $sth->execute();
|