| string connectionString | <host=hostname/IP>;user=username;pwd=password;db=database> |
| string user | user name |
| string password | password |
| databse | database to use (optional) |
| string cs | A connection string like <host=hostname/IP>;user=username;pwd=password;db=database> |
| string host | Host name or IP address |
| string user | User name |
| string pwd | password |
| string db | Database name |
| Connection con | Reference to a Connection |
| Connection con | Reference to a Connection. |
| string sql | A SQL string. |
| sql | An SQL string. |
| T | The type for the parameter. |
| target | A value of that type from which input will be taken or into which output will be placed. |
| direction | ParamIn, ParamInOut, or ParamOut - defaults to ParamIn |
| tt | Temporal values only - exactly what type, MYSQL_TYPE_TIME/..DATE/..DATETIME/..TIMESTAMP. |
| T | The type for the parameter. |
| target | A value of that type from which input may be taken or into which output may be placed. |
| direction | ParamIn, ParamInOut, or ParamOut - defaults to ParamIn |
| inCD | An InChunkDelegate to source the data. |
| outCD | An OutChunkDelegate to sink the data. |
| T | the variable type. |
| target | the variable that will source the data for a parameter. |
| newValue | the value to be set for the target variable. |
| ulong ra | out - the number of rows affected or in the result set. |
| target | the variable that will source the data for a parameter. |
| newValue | the value to be set for the target variable. |
| ulong ra | out - the number of rows affected or in the result set. |
| target | the variable that will source the data for a parameter. |
| newValue | the value to be set for the target variable. |
| int out_param_number | The out parameter number - zero based. |
| T | A variable type. |
| target | An instance of that type, if it is a string type, the length should be set to what can be accepted. |
| chunkSize | The size of chunk to use for transfer. If zero the transfer is not chunked. |
| tv | One of the MySQL time types to allow correct generation of the result. |
| T | The type of the target variable. |
| target | An instance of that type. |
| index | The column number within the result set starting at zero. |
| isnull | An out variable that will be set to true if the column was NULL. |
| getString | An indicator that getValue should stop short and return the string value of the column. |
| os | An out string variable for that purpose. |
| T | The type of the target variable. |
| target | An instance of that type. |
| colName | The column name. |
| isnull | An out variable that will be set to true if the column was NULL. |
| int index | The column index within the result set. |
| index | The column index within the result set. |