|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception java.sql.SQLException java.sql.SQLWarning java.sql.DataTruncation
public class DataTruncation
以 DataTruncation
异常形式抛出的异常(写入时),或者由于除数据值超出 MaxFieldSize
之外的某种原因意外地截断该数据值时以 DataTruncation
警告形式报告的异常(读取时)。
读取期间 DataTruncation
的 SQLstate 为 01004
。
写入期间 DataTruncation
的 SQLstate 为 22001
。
构造方法摘要 | |
---|---|
DataTruncation(int index,
boolean parameter,
boolean read,
int dataSize,
int transferSize)
创建一个 DataTruncation 对象,当 read 被设置为 true 时,该对象的 SQLState 初始化为 01004,当 read 被设置为 false 时,则初始化为 22001,reason 被设置为 "Data truncation",供应商代码被设置为 0,其他字段被设置为给定值。 |
|
DataTruncation(int index,
boolean parameter,
boolean read,
int dataSize,
int transferSize,
Throwable cause)
创建一个 DataTruncation 对象,当 read 被设置为 true 时,该对象的 SQLState 初始化为 01004,当 read 被设置为 false 时,则初始化为 22001,reason 被设置为 "Data truncation",供应商代码被设置为 0,其他字段被设置为给定值。 |
方法摘要 | |
---|---|
int |
getDataSize()
获得应该传输的数据字节数。 |
int |
getIndex()
获取被截断的列或参数的索引。 |
boolean |
getParameter()
指示被截断的值是一个参数值还是一个列值。 |
boolean |
getRead()
指示该值是否在读取时被截断。 |
int |
getTransferSize()
获得实际传输的数据字节数。 |
从类 java.sql.SQLWarning 继承的方法 |
---|
getNextWarning, setNextWarning |
从类 java.sql.SQLException 继承的方法 |
---|
getErrorCode, getNextException, getSQLState, iterator, setNextException |
从类 java.lang.Throwable 继承的方法 |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
public DataTruncation(int index, boolean parameter, boolean read, int dataSize, int transferSize)
DataTruncation
对象,当 read
被设置为 true
时,该对象的 SQLState 初始化为 01004,当 read
被设置为 false
时,则初始化为 22001,reason 被设置为 "Data truncation",供应商代码被设置为 0,其他字段被设置为给定值。cause
尚未进行初始化,随后可通过调用 Throwable.initCause(java.lang.Throwable)
方法初始化。
index
- 参数或列值的索引parameter
- 如果参数值被截断,则该参数为 trueread
- 如果某一 read 字段被截断,则该参数为 truedataSize
- 数据的原始大小transferSize
- 截断后的大小public DataTruncation(int index, boolean parameter, boolean read, int dataSize, int transferSize, Throwable cause)
DataTruncation
对象,当 read
被设置为 true
时,该对象的 SQLState 初始化为 01004,当 read
被设置为 false
时,则初始化为 22001,reason 被设置为 "Data truncation",供应商代码被设置为 0,其他字段被设置为给定值。
index
- 参数或列值的索引parameter
- 如果参数值被截断,则该参数为 trueread
- 如果某一 read 字段被截断,则该参数为 truedataSize
- 数据的原始大小transferSize
- 截断后的大小cause
- 此 DataTruncation
的底层原因(保存此原因,以便以后通过 getCause()
方法获取);可以为 null,表示该原因不存在或未知。方法详细信息 |
---|
public int getIndex()
如果列或参数索引是未知的,返回值可能为 -1,在这种情况下,应该忽略 parameter
和 read
字段。
public boolean getParameter()
true
;如果被截断的值是一个列值,则返回 false
public boolean getRead()
true
;如果该值在写入时被截断,则返回 false
public int getDataSize()
-1
。
public int getTransferSize()
-1
。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。