Re: how to insert records into table in oracle database.

2009-01-17 Thread Owen
> > Hi, > Can some one help me how to insert records into oracle database > tables using Perl script? > perldoc DBI is worth the read, then read the driver documentation for Oracle (it would be something like DBD::Oracle) Owen -- To unsubscribe, e-mail: beg

how to insert records into table in oracle database.

2009-01-17 Thread Sureshkumar M (HCL Financial Services)
Hi, Can some one help me how to insert records into oracle database tables using Perl script? Regards, Suresh DISCLAIMER: --- The contents of this e-mail and any

Re: want to get the count of rows of a table from oracle database using perl script

2004-12-10 Thread Priyanka krishnaraj
Thanks a lot. Tor Hildrum <[EMAIL PROTECTED]> wrote:On Wed, 8 Dec 2004 22:49:25 -0800 (PST), Priyanka krishnaraj wrote: > Hi All > > I want to get the count of rows in paticular table of the oracle database. You want DBI and DBD::Oracle. http://www.orafaq.com/faqperl.h

Re: want to get the count of rows of a table from oracle database using perl script

2004-12-09 Thread Tor Hildrum
On Wed, 8 Dec 2004 22:49:25 -0800 (PST), Priyanka krishnaraj <[EMAIL PROTECTED]> wrote: > Hi All > > I want to get the count of rows in paticular table of the oracle database. You want DBI and DBD::Oracle. http://www.orafaq.com/faqperl.htm Tor -- To unsubscribe, e-mail: [

want to get the count of rows of a table from oracle database using perl script

2004-12-08 Thread Priyanka krishnaraj
Hi All I want to get the count of rows in paticular table of the oracle database. Should i write an sql script to conect to database? if so how didi retun the value to the perl script. please can anybody help me thank you pri __ Do You Yahoo

RE: Accessing an oracle database with a DBI

2001-08-29 Thread Bob Showalter
> -Original Message- > From: Julian M Sawkins [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 28, 2001 1:42 PM > To: [EMAIL PROTECTED] > Subject: Accessing an oracle database with a DBI > > > Is there a way that doesn't involve installing the oracle clien

Re: Accessing an oracle database with a DBI

2001-08-29 Thread Ray Barker
PROTECTED]> Date: August 29, 2001 5:43 AM Subject: Accessing an oracle database with a DBI Is there a way that doesn't involve installing the oracle client? Can I use ODBC? If so, can anyone give me pointers as to where to find the drivers? The reason I'm avoiding the client

Accessing an oracle database with a DBI

2001-08-28 Thread Julian M Sawkins
Is there a way that doesn't involve installing the oracle client? Can I use ODBC? If so, can anyone give me pointers as to where to find the drivers? The reason I'm avoiding the client is because I have no cdrom in the machine, and no X installed (Redhat is so big these days I had no room for it

Re: Oracle Database...

2001-05-15 Thread M.W. Koskamp
- Original Message - From: Ang Sei Heng <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 7:18 PM Subject: Oracle Database... > Hello Everyone, > > Recently I did some database connection to Oracle via DBD::Oracle. > > I manage to co

Re: Oracle Database...

2001-05-15 Thread Tony Cook
On Tue, 15 May 2001, Ang Sei Heng wrote: > Hello Everyone, > > Recently I did some database connection to Oracle via DBD::Oracle. > > I manage to conncec to server, the follow statement does not > work: > > -- ## Begin Perl Code ## -- > > my $sqlcmd = "select * from street"; > >

Re: Oracle Database...

2001-05-15 Thread Collin Rogowski
The problem seems to be that the Oracle Driver does not implement the rows function. Quote from 'perldoc DBI': ""rows"" $rv = $sth->rows; Returns the number of rows affected by the last row affecting command, or -1 if the number of rows is not known or

Oracle Database...

2001-05-15 Thread Ang Sei Heng
Hello Everyone, Recently I did some database connection to Oracle via DBD::Oracle. I manage to conncec to server, the follow statement does not work: -- ## Begin Perl Code ## -- my $sqlcmd = "select * from street"; my $tbh = $dbh->prepare($sqlcmd); $tbh