| Home | How To | Online Documentation | Support | Download | Order |
|
|
bool asBool( )
const;
operator bool( ) const; asBool method returns the value of current object (usually SAField or SAParam object) as bool data. operator bool() substitute asBool method to provide quick access for object's value. RemarksIf the value of current object is NULL, asBool method returns false. Use SAValueRead::isNull method to make sure if the value is NULL or not. If the value's type of current object is bool (SA_dtBool), asBool method returns the original value with no conversion. If the value's type of current object is short (SA_dtShort ), long (SA_dtLong) or double (SA_dtDouble), asBool method converts it to bool data type. Conversion returns false if the value is 0; true otherwise. If the value's type of current object is any data type except the described above, the result is undefined and debug version asserts. Use SAValueRead::DataType method to get the value's type of SAValueRead object. Server specific notesNo specific information. See alsoisNull, asShort, asLong, asDouble, asDateTime, asString, asBytes, asLongBinary, asLongChar, asBLob, asCLob, asCursor, DataType Problems and QuestionsIf you haven't found the answer to your questions or have some problems on using the Library, please, send e-mail to howto@sqlapi.com. |
||||||||||||||||||