Database
From REALbasicWiki
Contents |
[edit] Description
Database is the base class that all database plugins subclass.
[edit] Superclass
[edit] Interfaces
[edit] Usage
Database is often used in methods where knowing the specific Database type is of no particular advantage since all databases implement certain core functions.
Function DBInfo(theDB as Database) as string return theDB.DatabaseName + "@" + theDB.Host End Function
