Re: How to Connect MSSQL Server from a Linux machine using Perl

2003-02-08 Thread alex
use DBD-ODBC driver Alex

Re: DBD::DB2 Do I need to compile on each box or can I copy the installed version to another box? (AIX)

2003-02-08 Thread Darin McBride
On February 5, 2003 10:29 am, [EMAIL PROTECTED] wrote: > Hello, > > My environment is as follows: > > AIX 4.3.3.0 running perl 5.005_03 > Installed DBI 1.32 > Installed DB2 vsn 7.2 > > I'm requiring install of the DBD::DB2 driver onto a number of AIX RS6000 > machines. The install originally faile

RE: 'use DBI' failure

2003-02-08 Thread Scott T. Hildreth
It means you don't have DBI installed. You need to install DBI & DBD::Oracle. Use CPAN and install the DBI Bundle and the install DBD::Oracle. perl -MCPAN -e shell ...if you want to install DBD::Oracle with CPAN, you will need to set your enviorment variables, ORACLE_HOME LD_LIBRARY_PA

How to Connect MSSQL Server from a Linux machine using Perl

2003-02-08 Thread Jeyaraj
I am new to this environment I don't know how to establish connection to SQL Server from Linux machine using Perl Pls help me in this issue Expecting your favourable answers Thanx in advance. Regards, Jeyaraj

FW: Hello

2003-02-08 Thread Jeff Urlwin
F orwarded to dbi-users. hello, Thanks for your mail. As perl your URL given, I have gone through it and tried to connect to SQL Server through ODBD driver Bridge. But I am getting this error : DBD::ODBC initialiation failed: Can't locate object method "driver" via package "DBD:ODBC" at /

any chance to build DBD::Sybase with no Sybase on linux?

2003-02-08 Thread Skorpion
i would like to use DBD::Sybase on linux debian to connect mssql server on winxp i found some problems while building DBD::Sybase - it's probobly normal reactions because it assumes Sybase installed - but my point is not to install Sybase for now any idea appriciated greg

Re: Can DBI be used to validate input?

2003-02-08 Thread Stephane Perennes
Stephane Perennes(71 91, Mascotte) On Fri, 7 Feb 2003, Steve Sapovits wrote: > > Suppose the user tries to register with a username > > that has already been taken. I need a way to kick > > back an error message to them. I tried setting the > > username field in the usrs table to UNIQU

RE: Can DBI be used to validate input?

2003-02-08 Thread Hapworth, Adam
Why not a select count(*) from user where username = $user If its > 0 then it is in use. or some sort of query against your user list. Adam -Original Message- From: Will [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 1:57 PM To: DBI Users Subject: Can DBI be used to validat