commented out encodeHTML.. let's see ow it goes. we should save some cpu
authormh <mh>
Tue, 5 Feb 2002 22:29:46 +0000 (22:29 +0000)
committermh <mh>
Tue, 5 Feb 2002 22:29:46 +0000 (22:29 +0000)
while producing.

source/mir/storage/Database.java

index 893aa92..f4aa63f 100755 (executable)
@@ -216,13 +216,13 @@ public class Database implements StorageObject {
             break;
           case java.sql.Types.CHAR:case java.sql.Types.VARCHAR:case java.sql.Types.LONGVARCHAR:
             outValue = rs.getString(valueIndex);
-            if (outValue != null)
-              outValue = StringUtil.encodeHtml(StringUtil.unquote(outValue));
+            //if (outValue != null)
+              //outValue = StringUtil.encodeHtml(StringUtil.unquote(outValue));
             break;
           case java.sql.Types.LONGVARBINARY:
             outValue = rs.getString(valueIndex);
-            if (outValue != null)
-              outValue = StringUtil.encodeHtml(StringUtil.unquote(outValue));
+            //if (outValue != null)
+              //outValue = StringUtil.encodeHtml(StringUtil.unquote(outValue));
             break;
           case java.sql.Types.TIMESTAMP:
             Timestamp timestamp = (rs.getTimestamp(valueIndex));