I need to access a SQL Azure databse from a worker role. It seems I have 3 choices:
ODBC
System.Data.SqlClient
PHP
My worker role is running a ruby on rails app - with the SQL Server adapter. It works fine on the development fabric using OLEDB, but this is not an option for deploying to the cloud.
Neither can I use php.
Is there any way I can either:
specify System.Data.SQLClient as the provider on the connection string?
or
set up an ODBC data source as part of the initialisation of the worker role and use that?
Thanks