RE: Script to test connecting to Oracle DBs

2012-08-01 Thread Martin Gainty
. Date: Sat, 28 Jul 2012 13:45:18 +1200 Subject: Script to test connecting to Oracle DBs From: newbie01.p...@gmail.com To: beginners@perl.org; dbi-us...@perl.org Hi all, I am looking for a Perl script or something similar that I can use to test connection from a client PC to several databases

Re: Script to test connecting to Oracle DBs

2012-08-01 Thread Leo Susanto
use strict; use DBI; use DBD::Oracle qw(:ora_types); my $user = ''; my $passwd = ''; my $tnsName = ''; $ENV{'ORACLE_HOME'} = 'C:\oracle\product\10.2.0\client_1'; my $dbh = DBI-connect(dbi:Oracle:$tnsName, $user, $passwd); my $SQL = qq{ SELECT XXX}; my $sth0 = $dbh-prepare($SQL); print SQL is

Script to test connecting to Oracle DBs

2012-07-27 Thread newbie01 perl
Hi all, I am looking for a Perl script or something similar that I can use to test connection from a client PC to several databases on a server. Does anyone know of any such script lying around somewhere :(- Currently, am testing connection from a client PC to an Oracle DB using Oracle's

Re: Script to test connecting to Oracle DBs

2012-07-27 Thread Rob Dixon
On 28/07/2012 02:45, newbie01 perl wrote: Hi all, I am looking for a Perl script or something similar that I can use to test connection from a client PC to several databases on a server. Does anyone know of any such script lying around somewhere :(- Currently, am testing connection from

Re: connecting to Oracle

2007-08-24 Thread rahed
[EMAIL PROTECTED] (Octavian Rasnita) writes: Hi, I want to make a program that connects to a remote Oracle database and then make it a .exe Windows executable. Is it possible to make it not depend on Oracle's client? Install Oracle Instant Client, build DBD::Oracle and then try which

connecting to Oracle

2007-08-22 Thread Octavian Rasnita
Hi, I want to make a program that connects to a remote Oracle database and then make it a .exe Windows executable. Is it possible to make it not depend on Oracle's client? Thanks. Octavian -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: connecting to Oracle

2007-08-22 Thread Chas Owens
On 8/22/07, Octavian Rasnita [EMAIL PROTECTED] wrote: Hi, I want to make a program that connects to a remote Oracle database and then make it a .exe Windows executable. Is it possible to make it not depend on Oracle's client? Thanks. Octavian Yes, but it would be a lot of work, slow,

Perl connecting to Oracle and SQL Server databases ...

2006-12-17 Thread Benbart
Hi all, Does anyone know of any resource that I can go to for example on connecting to Oracle and Microsoft SQL Server databases using Perl ??? I need more than connecting to the database, some example on how to do SELECT, INSERT, UPDATE and DELETE will be very helpful as well. Thanks

Re: Perl connecting to Oracle and SQL Server databases ...

2006-12-17 Thread Jeff Pang
connecting to Oracle and SQL Server databases ... Hi all, Does anyone know of any resource that I can go to for example on connecting to Oracle and Microsoft SQL Server databases using Perl ??? I need more than connecting to the database, some example on how to do SELECT, INSERT, UPDATE

RE: Perl connecting to Oracle and SQL Server databases ...

2006-12-17 Thread Tony Heal
@perl.org Subject: Perl connecting to Oracle and SQL Server databases ... Hi all, Does anyone know of any resource that I can go to for example on connecting to Oracle and Microsoft SQL Server databases using Perl ??? I need more than connecting to the database, some example on how to do

Re: Connecting to Oracle

2006-08-23 Thread Xavier Noria
On Aug 23, 2006, at 7:52 AM, anand kumar wrote: Can anyone please explain how to connect to oracle database server using perl script which is in separate linux server. Please note that currently I am using putty to connect to linux server for perl scripting and we have the Oracle

Connecting to Oracle

2006-08-22 Thread anand kumar
Hi all Can anyone please explain how to connect to oracle database server using perl script which is in separate linux server. Please note that currently I am using putty to connect to linux server for perl scripting and we have the Oracle database on a windows server. I have tried using

Connecting to Oracle over network

2004-05-24 Thread jason corbett
Hello. I am using Windows 2000 to connect to an Oracle database over the company network. I have the DBI/DBD drivers installed on my computer. I want to connect using the script below. When i run the script, it doesn't come back with anything. It just goes to the command prompt. Can someone

Re: connecting to oracle

2002-10-11 Thread Peter Scott
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Charles Belcher) writes: is there an alternative to using DBI and DBD::Oracle to connect to an Oracle database to run a simple select statement? You could run sqlplus from Perl like any other program. I would find it simpler to use DBI and