Oracle9i BLOB

2005-10-04 Thread Christoph Bohl
When I try to write a DTO with a BLOB member, I get the following error - even if the BLOB is very small. [org.apache.ojb.broker.platforms.Oracle9iLobHandler] ERROR: Error during temporary BLOB write ORA-03237: Initial Extent of specified size cannot be allocated in tablespace (TEMP) The

OJB + Oracle BLOB

2005-09-30 Thread Christoph Bohl
After consulting the ojb documentation and the mailing list archives I think that I do everything the right way, but I still cannot query a table with a blob... I get the following exception: org.apache.ojb.broker.metadata.MetadataException: IllegalAccess error setting field:datei in

Re: OJB.properties Eclipse Custom location

2005-03-09 Thread Christoph Bohl
Hermann, I have had the same problem. The only solution I got to work is actually using another class-loader for ojb related work. public class EclipseHelper { public static ClassLoader m_classloaderOrig; public static ClassLoader m_customClassloader; static {

mapping M:N relation WITH ATTRIBUTES

2004-04-16 Thread Christoph Bohl
I need to store some audit values on my mapping tables, in addition to the foreign key values. One of them is the application user name, others are timestamps that are set on the database. Is there any possibility that I can tell OJB which value to use for the user audit column when

RE: Stored Procedure / returning primary key

2004-02-03 Thread Christoph Bohl
. -Original Message- From: Christoph Bohl [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 1:52 PM To: [EMAIL PROTECTED] Subject: Stored Procedure / returning primary key Gurus, I try to use a stored procedure to insert a table. This works perfectly. The stored procedure does

Stored Procedure / returning primary key

2004-02-02 Thread Christoph Bohl
Gurus, I try to use a stored procedure to insert a table. This works perfectly. The stored procedure does correctly return the values that get inserted into the database. Unfortunately, the object I am inserting does not change after the insert (toString() before and after). Can you