-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dbuse() doesn't work with Azure #23
Comments
I have observed this bug while connecting to Azure SQL .
I can connect to MyApp database from command line with tsql:
But on SQL level, with TDS FDW I always get connected to "master" database. I cannot modify default login database in Azure. Is there a way to force an equivalent of Should it be possible to specify database name on Is it much work to do? Maybe it would be possible to add |
I have started a discussion with the FreeTDS developers about this problem: http://lists.ibiblio.org/pipermail/freetds/2015q2/029353.html |
The FreeTDS developer said that I'm thinking that I should make the |
Hi @filiprem, Can you please try the latest commit? I've added Commit: c534888 e.g. with this commit, you can provide more options to
|
Fixed in version 1.0.2. |
Thank you Geoff! This works fine now. |
When working with Azure,
dbuse()
results in messages like the following:dbuse()
callsUSE
behind the scenes. This is not supported with Azure:http://stackoverflow.com/a/14167073/1732980
Is there a way to supply the initial database name to
dbopen()
? If so, a potential fix would be to add an option to specify whether to usedbopen()
ordbuse()
to connect to a specific database.The text was updated successfully, but these errors were encountered: