Returns a list of all Schemas defined in Linkar Schemas or from the MV account associated with the current EntryPoint, synchronously or asynchronously.
* hasError
(only C)
|
BOOL*
|
|
Only in C functions: bool pointer used in the C functions that indicates the return of the function is a system error and must be communicated to the Linkar SERVER
|
* callback
|
OperationAsyncCallbackString
OperationAsyncCallbackLkData
ArrayList
|
|
Return type in asynchronous methods. For further information see ASYNCHRONOUS CALLS
|
* credentialsOptions
|
CredentialsOptions
char*
|
|
Object that defines the necessary data to access the database: Username, Password, EntryPoint, Language, FreeText. In the C Direct Functions, it is a char*
|
* connectionInfo
(only C)
|
char*
|
|
Only in C Persistent Functions: string that is returned by the Login function and contains all the necessary connection data. This data is necessary in persistent functions.
|
lkSchemasOptions
|
LkSchemasOptions
|
null /Nothing
NULL
|
This object defines the options to request a specific Schema Type:
: LKSCHEMAS, SQLMODE, or DICTIONARIES.
|
outputStringType
|
enum DataFormatSch.TYPE
typedef uint8_t DataFormatTYPE;
|
DataFormatSch.TYPE.MV
|
Indicates the format of the output data : MV, XML, JSON or TABLE
|
customVars
|
string
char*
|
|
This is a free text field to send in the transaction. If not empty, subroutine SUB.LK.MAIN.CONTROL.CUSTOM will be called. Add custom code to that subroutine to define special behaviours for some or all transactions.
|
receiveTimeout
|
Numeric
|
-1
0
|
This is the maximum time in seconds that the client will wait for a response. Use 0 for no timeout. This is a function-specific override : -1 in a Persistent function defaults back to the timeout defined in the LinkarClt constructor.
|
This function can generate exceptions.
In COM assemblies, a return value of type String will contain an error message if an error occurs when performing the operation.
TABLE output format uses the defined control characters in EntryPoints Parameters .Table Row Separator and Column Row Separator.
By default:
• | TAB char(9) for columns. |
• VT char(11) for rows.
LkSchema. Persistent Functions
string result = linkarclt.LkSchemas_Text(lkSchemasOptions, outputStringType, customVars, receiveTimeout);
LkData lkdata = linkarclt.LkSchemas(lkSchemasOptions, customVars, receiveTimeout);
|
|
Dim result As String = _linkarclt.LkSchemas_Text(_lkSchemasOptions, outputStringType, customVars, receiveTimeout)
Dim lkdata As LkData = _linkarclt.LkSchemas(_lkSchemasOptions, customVars, receiveTimeout)
|
|
String result = linkarclt.LkSchemas_Text(lkSchemasOptions, outputStringType, customVars, receiveTimeout);
LkData lkdata = linkarclt.LkSchemas(lkSchemasOptions, customVars, receiveTimeout);
|
|
char* result = LkLkSchemas(connectionInfo, &hasError, lkSchemasOptions, outputStringType, customVars, receiveTimeout);
|
|
LkSchemas. Direct Functions
string result = LinkarClt.LkSchemas_Text(credentialsOptions, lkSchemasOptions, outputStringType, customVars, receiveTimeout);
LkData lkdata = LinkarClt.LkSchemas(credentialsOptions, lkSchemasOptions, customVars, receiveTimeout);
|
|
Dim result As String = LinkarClt.LkSchemas_Text(_credentialsOptions, _lkSchemasOptions, outputStringType, customVars, receiveTimeout)
Dim lkdata As LkData = LinkarClt.LkSchemas(_credentialsOptions, _lkSchemasOptions, customVars, receiveTimeout)
|
|
String result = LinkarClt.LkSchemas_Text(credentialsOptions, lkSchemasOptions, outputStringType, customVars, receiveTimeout);
LkData lkdata = LinkarClt.LkSchemas(credentialsOptions, lkSchemasOptions, customVars, receiveTimeout);
|
|
char* result = LkLkSchemasD(credentialsOptions, &hasError, lkSchemasOptions, outputStringType, customVars, receiveTimeout);
|
|
LkSchemasAsync. Persistent Functions
linkarclt.LkSchemasAsync_Text(callback, lkSchemasOptions, outputStringType, receiveTimeout);
linkarclt.LkSchemasAsync(callback, lkSchemasOptions, receiveTimeout);
|
|
_linkarclt.LkSchemasAsync_Text(callback, _lkSchemasOptions, outputStringType, receiveTimeout)
_linkarclt.LkSchemasAsync(callback, _lkSchemasOptions, receiveTimeout)
|
|
linkarclt.LkSchemasAsync_Text(lkSchemasOptions, outputStringType, receiveTimeout);
linkarclt.LkSchemasAsync(lkSchemasOptions, receiveTimeout);
|
|
LkSchemasAsync. Direct Functions
LinkarClt.LkSchemasAsync_Text(callback, credentialsOptions, lkSchemasOptions, outputStringType, receiveTimeout);
LinkarClt.LkSchemasAsync(callback, credentialsOptions, lkSchemasOptions, receiveTimeout);
|
|
LinkarClt.LkSchemasAsync_Text(callback, _credentialsOptions, _lkSchemasOptions, outputStringType, receiveTimeout)
LinkarClt.LkSchemasAsync(callback, _credentialsOptions, _lkSchemasOptions, receiveTimeout)
|
|
LinkarClt.LkSchemasAsync_Text(lklisteners, credentialsOptions, lkSchemasOptions, outputStringType, receiveTimeout);
LinkarClt.LkSchemasAsync(lklisteners, credentialsOptions, lkSchemasOptions, receiveTimeout);
|
|