Hi,
I need to port an application from oracle to multiple datbases support (mssql, db2, oracle as the first goal).
The application does not need an OR mapping. It uses SQL which are a little bit more complex than standard SQL (e.g. oracles NVL).
For instance, I want to write one SQL like
select 'some con' || 'cat string', coalesce('its null', somevalue), current_timestamp() from mytable order by someothervalue
Can I use hibernate dialect implementation to translate that into different SQL dialects?
I know hibernate is ment to be an OR mapping. I found SwisSQL which does this job, but its very expensive.
thanks,
michael
|