|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
MySQL bombing out with ASP on IIS
I checked out my DSNs and it looks like I have the drivers installed for myODBC.
When I go to configure the DSN, it gives me an error: "The setup routines for the MySQL ODBC driver could not be loaded due to system error code 126" [Click OK] "Could not load the setup or translator library" [Click Ok] ASP error page: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) Specified driver could not be loaded due to system error 126 (MySQL). /test_scripts/test_adodb.asp, line 15 Code: <%@ LANGUAGE="VBSCRIPT" %> <% strConnection = "driver={MySQL};server=127.0.0.1:3306;uid=root;pwd=;database=test" Set adoDataConn = Server.CreateObject("ADODB.Connection") adoDataConn.Open strConnection strQuery = "SELECT * FROM test;" Set RS = adoDataConn.Execute(strQuery) %> Did the MyODBC driver not load properly????? Need help asap. Cant develop unless get passed this Thanks |
|
#2
|
|||
|
|||
|
What OS are you using? What version of the MyODBC are you installing?
__________________
El éxito consiste en una serie de pequeñas victorias día a día MySQL, MS SQL, MS ACCESS, Oracle Database Manager - http://victorpendleton.net/products/psdviewer.html |
|
#3
|
||||
|
||||
|
I'm having the same problem installing the mySQL ODBC drivers.
mdac: 2.6 mySQL: 4.0 Server 2000 SP3 |
|
#4
|
|||
|
|||
|
MySQL can't find database
Greetings,
I recognized your server address and its the same as mine! The host and I are currently trying to figure out why the MySQL won't hook up with the database. Would you mind contacting me regarding this problem? URL Thanks, |
|
#5
|
|||
|
|||
|
Hey my server adress is 127.0.0.1 too!...
![]() |
|
#6
|
|||
|
|||
|
The IP address 127.0.0.1 is a special addresses reserved for the "loopback" address. This means 127.0.0.1 is the same as the name "localhost" which is your own computer. You must provide an external IP address if the tcp service you want is not running on your own computer.
Another way to put it, anything sent to 127.0.0.1 never leaves your computer. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > MySQL bombing out with ASP on IIS |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|