mysql-native v3.0.0
API Reference Home: [This Version] [Latest Version] [Other Versions]
Struct ParameterSpecialization
A struct to represent specializations of prepared statement parameters.
struct ParameterSpecialization
;
If you need to send large objects to the database it might be convenient to
send them in pieces. The chunkSize
and chunkDelegate
variables allow for this.
If both are provided then the corresponding column will be populated by calling the delegate repeatedly.
The source should fill the indicated slice with data and arrange for the delegate to
return the length of the data supplied (in bytes). If that is less than the chunkSize
then the chunk will be assumed to be the last one.
Fields
Name | Type | Description |
---|---|---|
chunkDelegate
|
uint delegate(ubyte[]) | |
chunkSize
|
uint | In bytes |
pIndex
|
ulong | |
type
|
SQLType |