Hy List,

We have an Database-Table with an default-Column (now()), and want to save data in it. How can i configure OJB to insert Data in this table to use the Database-Funktion to create the Data of this field?

The Table is created like this:

--- cut ---
CREATE TABLE import_log (
 log_tst TIMESTAMP NOT NULL DEFAULT now(),
 log_importer VARCHAR(64),

 PRIMARY KEY (log_tst)
);
--- cut ---

normaly i can Insert Data into the Table like

--- cut ---
INSERT INTO import_log (log_importer) VALUES ('re');
--- cut ---

can i let OJB do the same?

Thanks for Help

best Greetings,

\Robert

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to