preparing new release
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / util / sql / TypesHelper.java
index 2b39182..b43c227 100644 (file)
@@ -114,7 +114,8 @@ public class TypesHelper {
         * @return
         */
        public static boolean isText(int type) {
-               return (type == CLOB || type == VARBINARY || type ==VARCHAR
-                               || type == CHAR || type == LONGVARCHAR );
+               return ( type == CHAR || type == VARCHAR || type == LONGVARCHAR
+                               || type == BINARY || type == VARBINARY || type == LONGVARBINARY 
+                                || type == CLOB || type == BLOB);
        }
 }