提交 b48b4ab4 编写于 作者: B Barry Lind

fixed bug reported by Noel Rappin (nrappin@sockeye.com) java Array type...

fixed bug reported by Noel Rappin (nrappin@sockeye.com) java Array type handled Timestamps incorrectly
上级 07cc12b8
......@@ -172,7 +172,7 @@ public class Array implements java.sql.Array
retVal = new Timestamp[ count ];
StringBuffer sbuf = null;
for ( ; count > 0; count-- )
((java.sql.Timestamp[])retVal)[i++] = ResultSet.toTimestamp( arrayContents[(int)index], rs );
((java.sql.Timestamp[])retVal)[i++] = ResultSet.toTimestamp( arrayContents[(int)index++], rs );
break;
// Other datatypes not currently supported. If you are really using other types ask
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册