CreateRecordSet  Method

Description         The method creates recordset for the specified ODBC database. You must specify the name of the table in the database and the name of the field contains the DIB as large binary data. You can specify WHERE clause as in SQL statements. For example: “Author = ‘Smith’ AND ID=12”.

Usage                  RetVal = [BiDb.] CreateRecordSet TableName Where FieldName Options

Remarks             RetVal                    BOOL             TRUE on success, otherwise FALSE.

Parameters         TableName            String              Name of the table to open in the ODBC database.

                            Where                    String              This parameter is the SQL WHERE clause.

                            FieldName             String              Name of the field contains large binary object data.

                            Options                   Long                Recordset opening options.

                            Available options:

                            None                       No options set.

                            AppendOnly           Allow append only.

                            ReadOnly               Allow read only.

Use GetLastDBError method to retrieve last error code.

See Also              DeleteRecordSet Method