Solution for "Error at Support.convert()"
Brought to you by:
ickzon
Hi,
I am not able to install CSV on my machine hence could not download the CSV repository of jtds. Hence i am putting the change in the tracker itself as this is a very small change. Sorry for inconvience. :(
File : net.sourceforge.jtds.jdbc.Support.java
Method : static Object convert(Object callerReference, Object x, int jdbcType, String charSet)
Chnages marked with + at start of the line :
switch (jdbcType) {
case java.sql.Types.TINYINT:
case java.sql.Types.SMALLINT:
case java.sql.Types.INTEGER:
if (x == null) {
return INTEGER_ZERO;
} else if (x instanceof Integer) {
return x;
} else if (x instanceof Byte) {
return new Integer(((Byte)x).byteValue() & 0xFF);
} else if (x instanceof Number) {
return new Integer(((Number) x).intValue());
} else if (x instanceof String) {
Anonymous
How to link this tracker to a issue opened in the forum? Pl. reply. (I am new to this) - Thanks
https://sourceforge.net/forum/forum.php?thread_id=2373794&forum_id=129584
I cannot reproduce the described problem here and the test provided by Bruce in the linked thread works flawlessly.
If someone can reproduce that problem and has a corresponding test scenario, please let me know and I'll reopen this bug.