views:

12

answers:

1

I want use Google Spreadsheets as data storage, but transparently via ADO.Net Data Provider. There is in some place an implementation?

+1  A: 

I don't think there's any ADO.Net provider for Google spreadsheets, but I'm not sure. However, Google have their own API called Google Spreadsheets API that can be used from .Net. You can find more information about this here.

It seems like it'll be a webservice you'll have to connect to it. But you can access it either as a list of rows or on a cell by cell basis and you can use queries to filter the data.

Edit: Here's a sample .Net project using it.

ho1

related questions