ROAR
ROAR

Reputation: 1324

Alternatives to writing an ODBC driver

We are storing allot of time series data into our own proprietary "database". In the next version of our system we want to give our users a simple query mechanism to extract the raw data from the database (as a complement to the reports our system can create) by using standard tools.

I have looked at the possibility to write an ODBC driver, but it looks like quite a daunting task, especially when the use will be very simple select statements.

I would be grateful for any tips, ideas and/or recommendation of libraries, that could make this task a bit simpler.

Our platform is Windows and our dev. env. is visual studio 2010 (nativ C++)

Upvotes: 5

Views: 1506

Answers (3)

steinar
steinar

Reputation: 9673

It might be interesting to take a look at OData, exposing your data as an OData producer, you would then be able to allow your users to query it right away using the already available consumers, e.g. Linqpad.

Upvotes: 1

Remus Rusanu
Remus Rusanu

Reputation: 294497

A LINQ provider.

Upvotes: 2

Peter G.
Peter G.

Reputation: 15144

It depends on what makes your customers happy. Easier than an writing ODBC driver would seem to provide a library function that can parse simple SQL selects and deliver the result in whatever form desired.

Upvotes: 0

Related Questions