Re: Can't delete row with DBI.pm

2012-07-25 Thread Tessio F.
2012/7/17 Rob Dixon > On 18/07/2012 00:18, Tessio F. wrote: > >> Hello, >> I have an database with a two column primary key: >> >> create database contacts( >> username char(20) not null, >> contact char(20) not null, >> primary key (username, contact) >> ); >> >> I'm trying to delete a row with

Re: Can't delete row with DBI.pm

2012-07-21 Thread Dr.Ruud
On 2012-07-18 01:18, Tessio F. wrote: Hello, I have an database with a two column primary key: create database contacts( username char(20) not null, contact char(20) not null, primary key (username, contact) ); I'm trying to delete a row with the command: (connect to db..) my $sth = $dbh->prepa

Re: Can't delete row with DBI.pm

2012-07-17 Thread Rob Dixon
On 18/07/2012 00:18, Tessio F. wrote: Hello, I have an database with a two column primary key: create database contacts( username char(20) not null, contact char(20) not null, primary key (username, contact) ); I'm trying to delete a row with the command: (connect to db..) my $sth = $dbh->prepa

Can't delete row with DBI.pm

2012-07-17 Thread Tessio F.
Hello, I have an database with a two column primary key: create database contacts( username char(20) not null, contact char(20) not null, primary key (username, contact) ); I'm trying to delete a row with the command: (connect to db..) my $sth = $dbh->prepare("DELETE FROM contacts

Re: DBI.pm

2003-08-29 Thread denis
hw_test//scr/PerlLib/ > /usr/local/lib/perl5/5.8.0/sun4-solaris /usr/local/lib/perl5/5.8.0 > /usr/local/lib/perl5/site_perl/5.8.0/sun4-solaris > /usr/local/lib/perl5/site_perl/5.8.0 /usr/local/lib/perl5/site_perl .) at > /home/baalaji/proj1/ETA/auto/etafpgahw_test//scr/PerlLib//DBI.pm line

Re: DBI.pm

2003-08-29 Thread Marius Roets
It is basically looking for the DBI module. DBI is a database independent Perl interface to databases, much like ODBC in the M$ environment. It means that in the program you are trying to run there is a "use DBI;", but Perl can't find the source file DBI.pm in the list of di

Re: DBI.pm

2003-08-29 Thread Matthew Harrison
usr/local/lib/perl5/site_perl/5.8.0 /usr/local/lib/perl5/site_perl .) at > /home/baalaji/proj1/ETA/auto/etafpgahw_test//scr/PerlLib//DBI.pm line 255 > BEGIN failed--compilation aborted at > /home/baalaji/proj1/ETA/auto/etafpgahw_test//scr/PerlLib//DBI.pm line 255. > > > &

DBI.pm

2003-08-29 Thread Sachin Mathur
l/lib/perl5/5.8.0 /usr/local/lib/perl5/site_perl/5.8.0/sun4-solaris /usr/local/lib/perl5/site_perl/5.8.0 /usr/local/lib/perl5/site_perl .) at /home/baalaji/proj1/ETA/auto/etafpgahw_test//scr/PerlLib//DBI.pm line 255 BEGIN failed--compilation aborted at /home/baalaji/proj1/ETA/auto/etafpgahw_test

Re: DBI.pm

2003-08-14 Thread Wiggins d'Anconia
awards wrote: Hi, I had problem installing modules with windows one way and the best way I did for me is to install via a very little program I made in perl here is the code Three lines of code #!/usr/bin/perl use CPAN; shell(); For future reference the above 3 lines equate to: perl -MCPAN -e she

DBI.pm

2003-08-14 Thread KENNETH JANUSZ
Home PC using XP Prof. SP1 with Oracle 9.2 DB installed. PERL5.005.03.exe installed. I am new to the world of PERL. I have searched my PC and DBI.pm has not been installed on my PC. I understand that I need DBI installed to connect to Oracle. So, my question is where do I download DBI from

Re: DBI.pm

2003-08-14 Thread awards
Hi, I had problem installing modules with windows one way and the best way I did for me is to install via a very little program I made in perl here is the code Three lines of code #!/usr/bin/perl use CPAN; shell(); after running the program you will have cpan> and type install DBI and wait. to f

RE: DBI.pm

2003-08-14 Thread NYIMI Jose (BMB)
stalling C:\Perl\html\bin\dbiprof.html Installing C:\Perl\html\bin\dbiproxy.html Installing C:\Perl\site\lib\DBI.pm Installing C:\Perl\site\lib\Win32\DBIODBC.pm Installing C:\Perl\site\lib\DBI\Changes.pm Installing C:\Perl\site\lib\DBI\DBD.pm Installing C:\Perl\site\lib\DBI\FAQ.pm Installin

RE: DBI.pm on perl-5.6.0

2001-05-30 Thread Chris Lott
I would guess that it needs a newer version. 5.6.1 is the current version... on my machine at least: C:\>perl -v This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) c

Re: DBI.pm on perl-5.6.0

2001-05-30 Thread kosta
> On Tue, May 29, 2001 at 05:24:07PM +0400, kosta wrote: > > Can I have DBI package installed on the following build of perl: > > ActiveState perl-5.6.0, MSWin32-x86-multi-thread? > > Yes. You probably want to use ActiveState's PPM installation utility. > > At the command prompt, type 'ppm

Re: DBI.pm on perl-5.6.0

2001-05-29 Thread Adam Turoff
On Tue, May 29, 2001 at 05:24:07PM +0400, kosta wrote: > Can I have DBI package installed on the following build of perl: > ActiveState perl-5.6.0, MSWin32-x86-multi-thread? Yes. You probably want to use ActiveState's PPM installation utility. At the command prompt, type 'ppm'. At the 'pp

DBI.pm on perl-5.6.0

2001-05-29 Thread kosta
Can I have DBI package installed on the following build of perl: ActiveState perl-5.6.0, MSWin32-x86-multi-thread? Thanks in advance, kosta