VisualIB
1.0
IBExpress library for making use of Borland IBExpress outside of C++Builder
|
VisualIB - InterBase wrapper for use in Visual Studio. More...
Functions | |
VIBDataSet *VIBCALL | VIBDataSet_New () |
Constructor. | |
void VIBCALL | VIBDataSet_Destroy (VIBDataSet *vds) |
Destructor. | |
VIBBOOL VIBCALL | VIBDataSet_SetDatabase (VIBDataSet *vds, VIBDatabase *vdb) |
Set the VIBDatabase instance for the VIBDataSet. | |
VIBDatabase *VIBCALL | VIBDataSet_GetDatabase (VIBDataSet *vds) |
Retrieve the VIBDatabase instance for the VIBDataSet. | |
VIBBOOL VIBCALL | VIBDataSet_SetTransaction (VIBDataSet *vds, VIBTransaction *vtr) |
Set the VIBTransaction instance for the VIBDataSet. | |
VIBTransaction *VIBCALL | VIBDataSet_GetTransaction (VIBDataSet *vds) |
Retrieve the VIBTransaction instance for the VIBDataSet. | |
VIBBOOL VIBCALL | VIBDataSet_SetUniDirectional (VIBDataSet *vds, VIBBOOL UniDirectional) |
Set the UniDirectional property. | |
VIBBOOL VIBCALL | VIBDataSet_GetUniDirectional (VIBDataSet *vds) |
Get the UniDirectional property. | |
VIBBOOL VIBCALL | VIBDataSet_SelectSQL_Clear (VIBDataSet *vds) |
Clear the SelectSQL statement list. | |
VIBBOOL VIBCALL | VIBDataSet_SelectSQL_Add (VIBDataSet *vds, const char *sql) |
Add a string to the SelectSQL statement list. | |
VIBString *VIBCALL | VIBDataSet_SelectSQL_GetText (VIBDataSet *vds) |
Obtain all SQL statements as a single string. | |
VIBBOOL VIBCALL | VIBDataSet_SelectSQL_SetText (VIBDataSet *vds, const char *sql) |
Set the text of the SelectSQL list to a single string. | |
VIBBOOL VIBCALL | VIBDataSet_Eof (VIBDataSet *vds) |
Check if the dataset is at the end of its set of records. | |
VIBBOOL VIBCALL | VIBDataSet_Open (VIBDataSet *vds) |
Open the dataset by executing the SelectSQL statement. | |
VIBBOOL VIBCALL | VIBDataSet_First (VIBDataSet *vds) |
Place the dataset cursor at the first record. | |
VIBBOOL VIBCALL | VIBDataSet_Next (VIBDataSet *vds) |
Step to the next record in the dataset. | |
VIBBOOL VIBCALL | VIBDataSet_Close (VIBDataSet *vds) |
Close the dataset. | |
VIBBOOL VIBCALL | VIBDataSet_Prepare (VIBDataSet *vds) |
Prepare the dataset's SelectSQL statement but do not execute it. | |
VIBString *VIBCALL | VIBDataSet_Plan (VIBDataSet *vds) |
Obtain a plan for the SelectSQL statement. | |
int VIBCALL | VIBDataSet_Fields_Count (VIBDataSet *vds) |
Get a count of the fields according to the TFields subobject. | |
VIBString *VIBCALL | VIBDataSet_Fields_AsString (VIBDataSet *vds, int Index) |
Get the value of a specific field as a string. | |
VIBString *VIBCALL | VIBDataSet_Fields_FieldName (VIBDataSet *vds, int Index) |
Get the name of a specific field as a string. | |
VIBString *VIBCALL | VIBDataSet_FieldByName_AsString (VIBDataSet *vds, const char *fieldname) |
Get the value of a specific field, found by field name, as a string. | |
int VIBCALL | VIBDataSet_FieldCount (VIBDataSet *vds) |
Get a count of the fields according to the TIBDataSet itself. | |
VIBFieldType VIBCALL | VIBDataSet_Fields_DataType (VIBDataSet *vds, int Idx) |
Get the type of a specific field in the data set. | |
VIBFieldKind VIBCALL | VIBDataSet_Fields_FieldKind (VIBDataSet *vds, int Idx) |
Get the kind of a specific field in the data set. | |
VisualIB - InterBase wrapper for use in Visual Studio.
TIBDataSet Wrapper
VIBString* VIBCALL VIBDataSet_FieldByName_AsString | ( | VIBDataSet * | vds, |
const char * | fieldname | ||
) |
Get the value of a specific field, found by field name, as a string.
int VIBCALL VIBDataSet_FieldCount | ( | VIBDataSet * | vds | ) |
Get a count of the fields according to the TIBDataSet itself.
VIBString* VIBCALL VIBDataSet_Fields_AsString | ( | VIBDataSet * | vds, |
int | Index | ||
) |
Get the value of a specific field as a string.
int VIBCALL VIBDataSet_Fields_Count | ( | VIBDataSet * | vds | ) |
Get a count of the fields according to the TFields subobject.
VIBFieldType VIBCALL VIBDataSet_Fields_DataType | ( | VIBDataSet * | vds, |
int | Idx | ||
) |
Get the type of a specific field in the data set.
VIBFieldKind VIBCALL VIBDataSet_Fields_FieldKind | ( | VIBDataSet * | vds, |
int | Idx | ||
) |
Get the kind of a specific field in the data set.
VIBString* VIBCALL VIBDataSet_Fields_FieldName | ( | VIBDataSet * | vds, |
int | Index | ||
) |
Get the name of a specific field as a string.
VIBDatabase* VIBCALL VIBDataSet_GetDatabase | ( | VIBDataSet * | vds | ) |
Retrieve the VIBDatabase instance for the VIBDataSet.
VIBTransaction* VIBCALL VIBDataSet_GetTransaction | ( | VIBDataSet * | vds | ) |
Retrieve the VIBTransaction instance for the VIBDataSet.
VIBString* VIBCALL VIBDataSet_Plan | ( | VIBDataSet * | vds | ) |
Obtain a plan for the SelectSQL statement.
VIBBOOL VIBCALL VIBDataSet_Prepare | ( | VIBDataSet * | vds | ) |
Prepare the dataset's SelectSQL statement but do not execute it.
VIBString* VIBCALL VIBDataSet_SelectSQL_GetText | ( | VIBDataSet * | vds | ) |
Obtain all SQL statements as a single string.
VIBBOOL VIBCALL VIBDataSet_SelectSQL_SetText | ( | VIBDataSet * | vds, |
const char * | sql | ||
) |
Set the text of the SelectSQL list to a single string.