| Thread | Last Post | Replies |
|
| Accessing MS Access through the DBI ODBC | 31 Mar 2005 16:03 GMT | 3 |
I am trying to access an MS Access database via perl DBI and I am unable to. I checked the security and there is only one 'Admin' user with no password and I use that in my connection string. However, I cannot connect. Please help. Regards, Javier Moreno
|
| Ima::DBI's select_val method | 31 Mar 2005 10:20 GMT | 2 |
Where is it implemented? I've been through Ima/DBI.pm a dozen times, and I can't find any thing that looks remotely close to declaring sub select_val { ..., even using symbol table manipulation.
|
| [general] how to figure out the connection id? | 30 Mar 2005 17:41 GMT | 4 |
In order to properly test take_imp_data implementation, one needs to be able to test that when a second connect is issued and dbi_imp_data is passed: my $dbh = DBI->connect($test_dsn, $test_user, $test_password, { dbi_imp_data => $imp_data });
|
| DBI disconnect slow performance | 30 Mar 2005 16:33 GMT | 1 |
I am having a problem with the DBI and/or DBD Oracle. I have a Perl CGI application. Using the Netscape web server, running on Solaris 9. Using perl 5.6.1, DBI 1.30,
|
| DBD::Sybase 1.05 and NetBSD 2.0 | 30 Mar 2005 06:05 GMT | 1 |
I'm trying to run DBD::Sybase version 1.05 on NetBSD 2.0. After getting everything installed when I run a test program I see this output: cs_diag(CS_INIT) failed at /usr/pkg/lib/perl5/5.8.6/i386-netbsd-thread-multi/DynaLoader.pm line
|
| RE: embedding DB handle in object (was RE: adding key to DB objec t) | 30 Mar 2005 00:37 GMT | 1 |
my $dbh = DBI->connect( .... ); my $big_honkin_data_structure = { house => "semi", car => "oldsmobile", dbh => $dbh, age => 43, ... };
|
| adding key to DB object | 29 Mar 2005 21:52 GMT | 6 |
Can someone explain why I can't do the following: $ cat uu #!/usr/bin/perl -l use strict;
|
| cacheing problem | 29 Mar 2005 21:43 GMT | 2 |
I am using dbd::mysql on activestate perl 5.8. When I select a row in my program, change the row using the mysql administrator tool, and select the row again in the
|
| Callback support is oin | 29 Mar 2005 21:14 GMT | 11 |
On Tue, Feb 22, 2005 at 09:12:00AM -0800, David Wheeler wrote:
> >That's great. You've got it to the point were I can't ignore it any > >more :-) I'll apply it and finish it up. |
| Re: has_a and the accessor name | 28 Mar 2005 18:59 GMT | 2 |
--- Josef Chladek <josef-e4T08UMSJ07k1uMJSBkQmQ@public.gmane.org> wrote:
> one question about is_a: > my application is strong hierarchical, i process my classes topdown, so > i first create the data in main and THEN set the data in the child |
| mysqlhotcopy + rsync and incremental backups | 28 Mar 2005 15:32 GMT | 2 |
Hi Tim, I was wondering if it is possible to use mysqlhotcopy to use rsync instead of cp in order to make an incremental backup of a database. cp is the only copy method supported, but if you included the 'only method supported' statement it is because you were thinking on maybe ...
|
| Sybase IQ bind parameter problem | 27 Mar 2005 20:40 GMT | 3 |
I am unable to use bind parameters in a simple query using Sybase IQ when the column being bound to is not an integer. The following code my $sqlstmt =" UPDATE creditqr.VolCurveDef SET QuoteType = ? WHERE
|
| How many lines deleted? | 27 Mar 2005 20:07 GMT | 2 |
I have a simple program to delete spam comments from Wordpress. How do I return the number of comments deleted? Current code: #!/usr/bin/perl
|
| gives segmentation fault | 27 Mar 2005 17:01 GMT | 1 |
I have a program #!/usr/bin/perl use Sybase::CTlib; my $uid = 'SQL';
|
| Misunderstood use of Getopt::long | 27 Mar 2005 06:28 GMT | 4 |
I have this code... #!/opt/perl64/bin/perl -w # v5.8.4 built for PA-RISC2.0-LP64 use Getopt::Long;
|