SqlParameter 类
定义
Represents a SQL parameter in the SqlQuerySpec used for queries in the Azure Cosmos DB database service.
public class SqlParameter extends JsonSerializable
- 继承
继承成员
JsonSerializable.get(String propertyName)
JsonSerializable.getBoolean(String propertyName)
JsonSerializable.getCollection(String propertyName)
JsonSerializable.getDouble(String propertyName)
JsonSerializable.getHashMap()
JsonSerializable.getInt(String propertyName)
JsonSerializable.getLogger()
JsonSerializable.getLong(String propertyName)
JsonSerializable.getMapper()
JsonSerializable.getObject(String propertyName)
JsonSerializable.getObjectByPath(Collection<String> propertyNames)
JsonSerializable.getString(String propertyName)
JsonSerializable.has(String propertyName)
JsonSerializable.JsonSerializable()
JsonSerializable.JsonSerializable(String jsonString, ObjectMapper objectMapper)
JsonSerializable.JsonSerializable(String jsonString)
JsonSerializable.JsonSerializable(JSONObject jsonObject)
JsonSerializable.remove(String propertyName)
JsonSerializable.toJson()
JsonSerializable.toJson(SerializationFormattingPolicy formattingPolicy)
JsonSerializable.toString()
JsonSerializable.toString(int indentFactor)
构造函数
SqlParameter() |
Initializes a new instance of the SqlParameter class. |
SqlParameter(String name, Object value) |
Initializes a new instance of the SqlParameter class with the name and value of the parameter.
|
方法
getName() |
Gets the name of the parameter.
|
getValue(Class<T> c) |
Gets the value of the parameter.
|
setName(String name) |
Sets the name of the parameter.
|
setValue(Object value) |
Sets the value of the parameter.
|