Bde.DBTables.TDatabase.IsSQLBased

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TDatabase

Delphi

property IsSQLBased: Boolean read FSQLBased;

C++

__property bool IsSQLBased = {read=FSQLBased, nodefault};

Description

Indicates whether a database component is using either the Borland Database Engine (BDE) SQL Links driver or the BDE ODBC socket.

Examine IsSQLBased at run time to determine whether a database connection is using a BDE SQL Links driver, the ODBC socket, or the Paradox, dBASE, and ASCII text file STANDARD driver. If IsSQLBased is true, the connection is using an SQL Links driver or the ODBC socket to communicate with a third-party ODBC driver. If the connection uses the STANDARD driver, IsSQLBased is false.

See Also