Database Connections
Unlike data sources, customers can dynamically create connections to the database types their hosting plans support using OleDB, ADODB and other providers located within .NET. In most cases and in practical and efficient programming, only a handful of connections to the same database are necessary, as opening and closing connections is slow and intensive on the servers. For optimal use, users should make a connection and leave the connection open while doing many transactions.
go back
|