SQLVarchar¶
The internal class which represents a CHAR, VARCHAR, or TEXT
Implements¶
- SQLType ref
Constructors¶
create¶
Parameters¶
- size: USize val
Returns¶
- SQLVarchar ref^
Public Functions¶
write¶
Write a string to this buffer. The string MUST fit in the defined buffer.
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¶
- str: String val
Returns¶
- Bool val
read¶
Read the value of the buffer into a String iso^. This is an iso^ copy of the data so the buffer can remain in place and reused without rebinding.
Returns¶
- String iso^ ?