Hacker’s Guide to Visual FoxPro
An irreverent look at how Visual FoxPro really works. Tells you the inside scoop on every command, function, property, event and method of Visual FoxPro.
DISPLAY CONNECTIONS
, LIST CONNECTIONS
These commands provide a list of named connections in a database. The name of the connection and the data source or connection string is listed.
DISPLAY | LIST CONNECTIONS
[ TO PRINTER [ PROMPT ] |
TO [ FILE ] cFileName [ ADDITIVE ] ]
[ NOCONSOLE ]
The same information is available using ADBOBJECTS()
and DBGetProp()
.
A database must be open and current before issuing the command.
USE MyTestDBC
CREATE CONNECTION TestConnection ;
DATASOURCE "MS Access 7.0 Databases"
DISPLAY CONNECTIONS
ADBObjects(), Create Connection, DBGetProp(), Display and List, Modify Connection