程序包 com.mysql.cj
类 ClientPreparedQueryBindValue
- java.lang.Object
-
- com.mysql.cj.ClientPreparedQueryBindValue
-
- 所有已实现的接口:
BindValue
- 直接已知子类:
ServerPreparedQueryBindValue
public class ClientPreparedQueryBindValue extends Object implements BindValue
-
-
字段概要
字段 修饰符和类型 字段 说明 protected booleanisNullNULL indicatorprotected booleanisSethas this parameter been set?protected booleanisStreamObjectorigValueprotected MysqlTypeparameterTypeprotected longstreamLengthObjectvalueThe value to store
-
构造器概要
构造器 限定符 构造器 说明 ClientPreparedQueryBindValue()protectedClientPreparedQueryBindValue(ClientPreparedQueryBindValue copyMe)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 ClientPreparedQueryBindValueclone()byte[]getByteValue()MysqlTypegetMysqlType()byte[]getOrigByteValue()longgetStreamLength()InputStreamgetStreamValue()booleanisNull()booleanisSet()booleanisStream()voidreset()voidsetByteValue(byte[] parameterValue)voidsetIsStream(boolean isStream)voidsetMysqlType(MysqlType type)voidsetNull(boolean isNull)voidsetOrigByteValue(byte[] origParamValue)voidsetStreamValue(InputStream parameterStream, long streamLength)
-
-
-
字段详细资料
-
isNull
protected boolean isNull
NULL indicator
-
isStream
protected boolean isStream
-
parameterType
protected MysqlType parameterType
-
value
public Object value
The value to store
-
origValue
public Object origValue
-
streamLength
protected long streamLength
-
isSet
protected boolean isSet
has this parameter been set?
-
-
构造器详细资料
-
ClientPreparedQueryBindValue
public ClientPreparedQueryBindValue()
-
ClientPreparedQueryBindValue
protected ClientPreparedQueryBindValue(ClientPreparedQueryBindValue copyMe)
-
-
方法详细资料
-
clone
public ClientPreparedQueryBindValue clone()
-
setIsStream
public void setIsStream(boolean isStream)
- 指定者:
setIsStream在接口中BindValue
-
getMysqlType
public MysqlType getMysqlType()
- 指定者:
getMysqlType在接口中BindValue
-
setMysqlType
public void setMysqlType(MysqlType type)
- 指定者:
setMysqlType在接口中BindValue
-
getByteValue
public byte[] getByteValue()
- 指定者:
getByteValue在接口中BindValue
-
setByteValue
public void setByteValue(byte[] parameterValue)
- 指定者:
setByteValue在接口中BindValue
-
setOrigByteValue
public void setOrigByteValue(byte[] origParamValue)
- 指定者:
setOrigByteValue在接口中BindValue
-
getOrigByteValue
public byte[] getOrigByteValue()
- 指定者:
getOrigByteValue在接口中BindValue
-
getStreamValue
public InputStream getStreamValue()
- 指定者:
getStreamValue在接口中BindValue
-
setStreamValue
public void setStreamValue(InputStream parameterStream, long streamLength)
- 指定者:
setStreamValue在接口中BindValue
-
getStreamLength
public long getStreamLength()
- 指定者:
getStreamLength在接口中BindValue
-
-