The documentation is all at h2database.com
There is already an oracle compatibility mode for H2.
http://h2database.com/html/features.html#compatibility
I'm quite sure that if you submit patches for the things that you
need, Thomas will be happy to accept them.
The code is really pretty well-structured and easy to work with.
Set up Eclipse, install Subclipse, checkout the repository, code,
generate patch, and send to list.
You're also welcome to just ask nicely for features and some of us
might help out.
Regards, Noel Grandin
> --
> You received this message because you are subscribed to the Google Groups "H2 Database" group.
> To post to this group, send email to h2-da...@googlegroups.com.
> To unsubscribe from this group, send email to h2-database...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
>
>
Even though our code runs fine, there are still some functions missing
which are used in customization, e.g. 'Function "TO_DATE" not found' .
-- TO_DATE
create alias TO_DATE as $$
java.util.Date toDate(String s) throws Exception {
return new java.text.SimpleDateFormat("yyyy.MM.dd").parse(s);
}
$$;
-- TO_CHAR
drop alias if exists TO_CHAR;
create alias TO_CHAR as $$
String toChar(BigDecimal x, String pattern) throws Exception {
return new java.text.DecimalFormat(pattern).format(x);
}
For using H2 as drop-in replacement we would like to add those Oracle
specific functions when running in Oracle mode. Maybe we could create
an add-on jar for this.
1. Who would like to join the effort of creating this drop-in
replacement for Oracle ?
3. Is there already some a Wiki for H2 development ?
what about alias for Oracle sequence MAXVALUE & MINVALUE?
When will 1.4 of h2 will be released?