|
|||
Due to the security concerns with using System Data Source Names (DSNs) on shared systems, we try to encourage the use of DSNless connections our servers. This means that the connection credentials (passwords etc) must be supplied in a connection string that you provide to the ADO/ODBC layer, rather than us storing them for you in a DSN which anyone on the system could use. First, an ADODB.Connection object must be created; then a specially crafted connection string must be passed to the Open method, as the following code demonstrates. Example Set Conn = Server.CreateObject("ADODB.Connection") You will need to replace the SERVER, DATABASE, UID and PWD entries with details provided to you when your database was first setup. If you have lost these details, please get in touch with webweaver@zetnet.net. Links Here are some links that may be useful while developing
your web applications: Google Search for "ASP database" Microsoft's Universal Data Access Site MySQL / MyODBC Reference Manual MySQL / MyODBC Download Site (Zetnet allow you to
connect from your own test servers) MySQL Download Site (Run your own test/development
server) |
|||
Copyright Zetnet Ltd 2007. All rights reserved. |
|||