views:

32

answers:

1

I want to expose our internal bussiness data through odbc driver. One of the propitary product that i found is DataDirect OpenAccess. I want to use SQL to query live data from our data source. Writing my own SQLEngine will take ages but i need something like following diagram. We intend to use it on live data so exporting it to database and than running query is not a good solution at this time. Can anyone guide me how can i solve it using opensource.

link text

+1  A: 

Given the requirements you describe, I don't see any choice but for you to develop an odbc driver that knows how to talk to your lisp engine. This will be a non-trivial task.

However, since you mention open source, you may be able to get a running start by looking at one of the the open source odbc drivers such as iODBC.

dar512