1 Reply Latest reply on Oct 23, 2001 4:04 PM by samirk

    Field Size Limit for objects in Hypersonic

    samirk

      Hi, Need help with another problem I am having, I have a CMP with some fields a HashMap, I ahave mapped jaws.xml and ejb-jar.xml to include these fields, I get a rollback when i try to set any big object in the hashmap ( generally > 30 K), with smaller objects in the hashmap, it seems to work, I am storing byte[]s in the hashmap.
      So my question is , is there a size limit on objects stored in hypersonic, If so does anyone know what it is and if it can be bypassed. Thanks for your help
      Samir

        • 1. Re: Field Size Limit for objects in Hypersonic
          samirk

          I figured out a way to bypass the size limit for big objects basically by using this
          <sql-type>VARCHAR(999999)</sql-type>
          instead of
          <sql-type>OBJECTsql-type>
          for that field in jaws.xml.
          This way you can store big java objects in the hypersonic database
          Thanks
          Samir