Bde.DBTables.TStoredProc.DescriptionsAvailable

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function DescriptionsAvailable: Boolean;

C++

bool __fastcall DescriptionsAvailable();

Description

Determines if parameter information is available from the stored procedure on the server.

Call DescriptionsAvailable to determine if a stored procedure on a server can return parameter information to the application. If DescriptionsAvailable returns true, parameter information is available from the server. If DescriptionsAvailable returns false, parameter information is not available.

Note: If DescriptionsAvailable returns false, the application must still provide correct parameter information to the stored procedure on the server. It is up to the application developer to know the necessary parameters at design time.

See Also