I am looking at doing some work with Rebol3 and PostgreSQL and trying to plan my approach. It looks like I have the following options:
ODBC access.
Write my own driver
Maybe there is an existing one that would work.
ODBC access looks like the simplest way forward, but the native PostgreSQL drivers offer some features that are not available there that I would prefer to use. This leads me to writing my own driver or trying to use the old pure rebol driver from 2003.
A lot of rebol 2 code does not work on rebol 3 and so I would assume that the PostgreSQL driver would require some effort to make work at all, and some more effort to use the more recent protocols for PostgreSQL. I am guessing this will not be too hard?
My goal is to create some frameworks for quickly and easily tying stored procedures to the front end, to bring some of the better features of some of the rest of my work to Rebol applications. What do folks think is the best way forward here?