Bde.DBTables.TTable.Exists
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: Bde.DBTables.pas Bde.DBTables.hpp
| |
Unit: Bde.DBTables | |
Parent: TTable |
Delphi
property Exists: Boolean read GetExists;
C++
__property bool Exists = {read=GetExists, nodefault};
Description
Indicates whether the underlying database table exists.
Read Exists at runtime to determine whether a database table exists. If the table does not exist, create a table from the field definitions and index definitions using the CreateTable method.
This property is read-only.
See Also
Code Examples