Board index » delphi » User DSN, System DSN or File DSN ?
Al Cantu
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
User DSN, System DSN or File DSN ?QuoteEvandro Clayton Braga wrote: connect to a database using ODBC (or ADO). DSNs can be created using the ODBC control panel. User DSNs are DSNs that are available only to the user logged into the workstation. System DSNs are DSNs that every user on a workstation have access to. (System DSNs are a mute point on Windows 95, since it is not really a multi-user operating system.) User and System DSNs are stored in the registry. File DSNs are portable versions of DSNs. Instead of being stored in the registry, each File DSN is contained in its own file. While the appropriate ODBC/ADO drivers need to be installed in order to use File DSNs, File DSNs allow you to quickly move connection settings from one machine to another. The BDE can use DSNs by creating Aliases that use the connection Hope that helps, and someone please correct me if I am wrong. Thanks. Al Cantu Quote> What is it the difference between then ??? |