Hi Chris,
> In the 0.3.0-alphas there's full transaction support
thanks for that. Unfortunately alpha13 breaks "select" in oracle.
From what I can see the problem is that table names and columns are
now quoted so the sql comes out like:
SELECT "station"."id" from "station"
This works fine in postgres but oracle can't find table "station"
(in sqlplus:
desc "station";
ERROR:
ORA-04043: object "station" does not exist)
In 0.2.1 the sql looks like:
SELECT
station.id from station
which works fine in oracle.
I've been digging about in your commits to try and find where you made
the change but I can't find it at present.
FWIW, I've migrated from oracle to postgres for testing at present and
avoided the clobs for now.
Thanks for all your work.