Forum Moderators: coopster
Be aware that some databases also handle UPDATE and INSERT queries a little differently, and Oracle has some stuff that is specific to itself.
I use Adodb (database abstraction layer) so I can use wrappers to create queries I'm fairly certain will run on many different database types. It also allows me to import an XML Schema for which I can direct specific queries to specific database types when building a database (standard SQL dump may not, or will not, work between databases)
What I was thinking of doing was running a sql query against an access database using the odbtp extension.
Then putting the result in an array or something. Then running a oracle query instead of doing a join. Replace it with the array. Does that make sense. Can it be done. I've tried the adodb layer with some success but not something I'd rely on.