[JBoss-user] Re: blob field in cmp

2003-12-15 Thread Alexey Loubyansky
I thought you used jboss.xml. Do you use CMP1.1? What is the exception? PS: please, keep it on jboss-user forge wrote: Hello, Alex I couldn't find jboss in server/default/conf directory, but there is a standardjboss.xml. And I found the following lines in it: org.jboss.ejb.plugins.cmp.jdbc.JDBCS

Re: [JBoss-user] Re: blob field in cmp

2003-12-15 Thread Alexey Loubyansky
Can you try with JBossCMP engine instead of JAWS? Just use org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager in jboss.xml forge wrote: Thanks, Alexey. Do you mean I should modify standardjaws.xml? No, I didn't modify it. I found following settings in jaws.xml: DB2 java.lang

[JBoss-user] Re: blob field in cmp

2003-12-14 Thread forge
Thanks, Alexey. Do you mean I should modify standardjaws.xml? No, I didn't modify it. I found following settings in jaws.xml: DB2 java.lang.Object JAVA_OBJECT BLOB(2000) Need I modify it? Regards, Forge > >Message: 8 >Date: Fri, 12 Dec 2

RE: [JBoss-user] Re: BLOB

2001-07-16 Thread Schouten, Andreas
> My experience doing BLOB inserts with Postgres and DB2 and with JBoss is that it's horribly slow. This can be caused by the application design. Lets asume You have a lage resultset and display some fieldes of each entiy in a table on the client. Than all blobs are read from

[JBoss-user] Re: BLOB

2001-07-15 Thread Eric Anderson
My experience doing BLOB inserts with Postgres and DB2 and with JBoss isthat it's horribly slow. I believe the database is the problem - DB2 wasmaybe 25% faster than Postgres but neither was fast enough for high-volumeinserts, and this was with fairly small BLOBs - 10k-20k. It's possib

Re: [JBoss-user] Re: BLOB

2001-07-14 Thread Jason Dillon
> I've used CMP and BLOBs with JBoss in the past. Declare the bean member > variable that will hold your BLOB data as a byte[]. This will get mapped > to the of JAVA_OBJECT. Then check (standard)jaws.xml to see > that the mapping for this exists. It looks like the mapping below - > BLOB(2000)

[JBoss-user] Re: BLOB

2001-07-14 Thread Eric Anderson
I've used CMP and BLOBs with JBoss in the past. Declare the bean member variable that will hold your BLOB data as a byte[]. This will get mapped to the of JAVA_OBJECT. Then check (standard)jaws.xml to see that the mapping for this exists. It looks like the mapping below - BLOB(2000) - was