Hi Guys,

I solved this problem so thought I'd round off in case anyone ever has the same 
issue.

In the hypersonic documentation, it states that you need to create a table with 
the text attribute in order to make it persistant and not a memory-only table:

[CODE]
create [B]text[/B] table person
( 
        pid varchar not null primary key,
        name varchar,
        age integer
);
[/CODE]

However, this seems to cause Jboss to not recognize the table. Removing the 
'text' solved the problem. So either the documentation is incorrect (or I dont 
understand it) or Jboss does something under the covers to make the table 
permanent when accessing it.

Clive

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3899636#3899636

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3899636


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to