No, only mysql is supported at this time.
I did some work changing the abstraction layer to support PostgreSQL
in this way. There were data types that didn't translate well, and
many SQL idioms that are acceptable in MySQL but not in PostgreSQL.
Ideally, this would be an opportunity to standardize the SQL to
provide more compatibility. And I'm still a little interested in how
that might work out.
However, much of this article (however offensive it may be to some)
rang true with me after my initial attempts to support multiple
databases:
http://jeremy.zawodny.com/blog/archives/002194.html
"The cost of switching databases after an application is developed and
deployed is quite high. You have possible schema and index changes,
syntax changes, optimization and tuning work to re-do, hints to adjust
or remove, and so on. Changing mysql_foo() to oracle_foo() is really
the least of your problems. You're gonna touch most, if not all, of
your SQL--or you'll at least need to verify it."
ResourceSpace really is designed to work with MySQL. My thought would
be that any DAM which claims to support all databases in a
hot-swappable fashion probably hasn't gone into deep detail on the
issue of optimization. While RS still has room for optimization, much
of the code is the product of ongoing and wide-spread developer and
community experience with the specific behaviors of MySQL.
> --
> You received this message because you are subscribed to the Google Groups "ResourceSpace" group.
> To post to this group, send email to resour...@googlegroups.com.
> To unsubscribe from this group, send email to resourcespac...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/resourcespace?hl=en.
>
>
--
Tom Gleason, PHP Developer
DBA Impressive Design
Exploring ResourceSpace at:
http://resourcespace.blogspot.com
Meanwhile, our
developers need to acknowledge that their code may be run against a
different back end and make any MySQL optimisation optional.