Lightweight 0.1.0
|
Lightweight SQL client is non-intrusively extensible with respect to custom column data types.
A lot of standard types are already supported, but if you need to add a custom type, you can do it by implementing a simple interface.
Suppose you have a custom type CustomType
that you want to bind to the SQL statement.
To bind the custom type to the SQL statement, you need to implement the SqlDataBinder<>
specialization for the custom type.
The InputParameter()
function binds the custom type to the SQL statement as an input parameter.
It is usually sufficient to call one of the already existing SqlDataBinder<T>::InputParameter(...)
functions for the underlying type.
Sometimes you may need to perform additional operations, such as converting the custom type to the underlying type, before calling the SqlDataBinder<T>::InputParameter(...)
function. Then you can make use of the passed callback
to also make sure any additional operations are performed at the end of the binding process.
The OutputColumn()
function binds the custom type to the SQL statement as an output parameter.
It is usually sufficient to call one of the already existing SqlDataBinder<T>::OutputColumn(...)
The GetColumn()
function retrieves the custom type from the SQL statement.
Calling GetColumn()
is usually less efficient than calling OutputColumn()
because it requires an additional copy operation.
The Inspect()
function is used to provide a human-readable representation of the custom type.
This function should be used purely for debugging purposes.