Ok... One more release before I finalize it.
BD_GetColumn() now returns the correct values as defined in the constants file.
If the column is null the above is returned. I tested this with text fields and numeric using an Access 2003 database correctly. If there are any problems, let me know ASAP because today I finish the docs and tomorrow release it proper.
I have also added
BD_IsNull(colname$)
This command returns a 1 or a 0. 1 means that the column contains a null value (for the current record), and 0 means that the value is non-null. This is irregardless of whether it is a numeric or text column.
Kanati
BD_GetColumn() now returns the correct values as defined in the constants file.
Const BD_NullString$ = "*NULL*" Const BD_NullInt% = -2147483648 Const BD_NullFloat# = -2147483648.0
If the column is null the above is returned. I tested this with text fields and numeric using an Access 2003 database correctly. If there are any problems, let me know ASAP because today I finish the docs and tomorrow release it proper.
I have also added
BD_IsNull(colname$)
This command returns a 1 or a 0. 1 means that the column contains a null value (for the current record), and 0 means that the value is non-null. This is irregardless of whether it is a numeric or text column.
Kanati