Insert using ORACLE systimestamp

2007-02-20 Thread Brendan Miller
Is there a way for an object's .save() method to insert using Oracle's SYSTIMESTAMP built-in for tables that have a timestamp field? Thanks, Brendan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

RE: Insert using ORACLE systimestamp

2007-02-21 Thread Thomas Fischer
"Brendan Miller" <[EMAIL PROTECTED]> schrieb am 20.02.2007 16:53:28: > Is there a way for an object's .save() method to insert using Oracle's > SYSTIMESTAMP built-in for tables that have a timestamp field? I do not know an easy way to do so. However, you can use an after insert/update trigger in o

Re: Insert using ORACLE systimestamp

2007-02-24 Thread Thomas Vandahl
Brendan Miller wrote: > Is there a way for an object's .save() method to insert using Oracle's > SYSTIMESTAMP built-in for tables that have a timestamp field? I'd suggest to think about this again. In an application, the application server is the leading part and it should provide the timestamps f

Re: Insert using ORACLE systimestamp

2007-02-26 Thread Brendan Miller
On Sat, Feb 24, 2007 at 07:37:47PM +0100, Thomas Vandahl wrote: > Brendan Miller wrote: > > Is there a way for an object's .save() method to insert using Oracle's > > SYSTIMESTAMP built-in for tables that have a timestamp field? > > I'd suggest to think about this again. In an application, the > a