sub Application_OnStart
Application("ConnectionString") = "Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=1111;Uid=222222;Pwd=33333"
end sub
------------------ 00000 -----------
set ConexionLW = Server.CreateObject("ADODB.Connection")
ConexionLW.Open Application("ConnectionString")
SQL = "Select * From usuario"
Set RS = ConexionLW.Execute(SQL)
global.asa in root directory.
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Sub Session_OnStart
Session("ConnectionString"
End Sub
</SCRIPT>
For MY SQL you need to have an ODBC System DSN configured.
driver={MySQL ODBC 3.51 Driver};server=<SERVER>;da
Let us know,
Cheers,
Hades666