Message6007

Author cru
Recipients cru
Date 2010-08-24.00:13:16
SpamBayes Score 0.00050095044
Marked as misclassified No
Message-id <1282608798.86.0.774035302387.issue1647@psf.upfronthosting.co.za>
In-reply-to
Content
For my purposes, all that's been necessary so far is the following one line change.

Index: src/com/ziclix/python/sql/DataHandler.java
===================================================================
--- src/com/ziclix/python/sql/DataHandler.java	(revision 7101)
+++ src/com/ziclix/python/sql/DataHandler.java	(working copy)
@@ -234,6 +234,7 @@
 
             case Types.CHAR:
             case Types.VARCHAR:
+            case Types.NVARCHAR:
                 String string = set.getString(col);
                 obj = string == null ? Py.None : Py.newUnicode(string);
                 break;
History
Date User Action Args
2010-08-24 00:13:19crusetrecipients: + cru
2010-08-24 00:13:18crusetmessageid: <1282608798.86.0.774035302387.issue1647@psf.upfronthosting.co.za>
2010-08-24 00:13:18crulinkissue1647 messages
2010-08-24 00:13:16crucreate