SQLFloat¶
The internal class which represents a Float (F32)
Implements¶
- SQLType ref
Constructors¶
create¶
Returns¶
- SQLFloat ref^
Public Functions¶
write¶
Write an F32 to this buffer as a string. The string will fit as we defined the buffer to be characters on initialization.
Will return true if written and verification succeeds.
Will return false if the string is too long for the buffer or the readback doesn't match for some other reason.
Parameters¶
- f32: F32 val
Returns¶
- Bool val
read¶
Read the value of the buffer and convert it into an F32.
This function is partial just in case the string version that comes from the database is not within the F32 range.
NOTE: SQLite does not enforce type limits, so if you use that specific ODBC driver, this is something that must be verified.
Returns¶
- F32 val ?