ParameterMetaData
interfacein packageklyn.databases.sql
public interface ParameterMetaData:
Parameter metadata contract inspired by `java.sql.ParameterMetaData`.
import klyn.databases.sql
info = prepared.parameterInfo
print(info.parameterCount)
Properties
| Modifier and Type |
Member |
Description |
| public readonly property |
parameterCount |
Number of declared parameters. |
Methods
| Modifier and Type |
Member |
Description |
| public |
nullability |
Returns the nullability contract for one parameter. |
| public |
parameterMode |
Returns the mode for one parameter. |
| public |
parameterType |
Returns the JDBC-style SQL type code for one parameter. |
| public |
parameterTypeName |
Returns the SQL type name for one parameter. |
| public |
precision |
Returns the numeric precision for one parameter. |
| public |
scale |
Returns the numeric scale for one parameter. |
| public |
signed |
Returns true for signed numeric parameters. |