Please Help Me
can any one tell me how to connect oracle 9i and HTML PAGES USING CGI PERL. I know how to do it with oracle 8 and 8i.
But the same code will not work with oracle 9i.
Here is the code which I used for connectting oracle 8/8i
use CGI qw(:cgi-lib);
use Win32::ODBC;
if(!($Db= new Win32::ODBC("dsn=abc;UID=scott;PWD=tiger")))
{
print "Content-type:text/html\n\n";
print "<html>";
print "<body bgcolor=#f1fee9>";
print "<p>Error connecting</p>";
print "</body>";
print "</html>";
exit;
}
can Any please tell me how to do it with Oracle 9i
Thanking You in advance
Waiting for ur reply.
Gururaj

