Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

problem with the latest SQLBase Odbc driver...?

Status
Not open for further replies.

shopoto

MIS
Jun 24, 2004
3
FR
Hi everyone


I've a windows 2003 server used as a web server (IIS6) where i've installed the SQLBase ODBC version 8.05.00.13498.
I run the code below prefectly:


<%@ Language=VBScript %>
<html>
<head>
<title>ASP ADO Demo</title>
<body>
<%
Set OBJdbConnection = Server.CreateObject("ADODB.Connection")
OBJdbConnection.Open "odbcOLDFEED"
SQL = "SELECT * FROM constructeur"
Set rs = OBJdbConnection.Execute(SQL)
do while not rs.EOF
Response.write( rs("Nom")&"<br>")
rs.movenext
loop
rs.close
set rs = nothing
%>
</body>
</html>



But...

I've another web server (samme config win server 2003 & ISS6) where i've installed the latest SQLBase driver, the version 8.05.00.13590.
I've tried to run the same code...
but i've got the followinig error message:

Microsoft OLE DB Provider for ODBC Drivers erreur '80004005'

[Gupta][ODBC Driver][SQLBase]00134 SQL CNO ERROR.SQL NOT FOUND LOOKING UP ERROR 09293

/ti.asp, ligne 8


May be that this error could come from my driver update...


But what should i do...?

Thanks...!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top