Issue:
Data Source Never Gets Patched
Background
- New Azure SQL DB
- Connector was established using SQL Admin Credentials Defined when Database was Created
- Patch Statement is: Patch('[dbo].[CPT_Codes]',Defaults('[dbo].[CPT_Codes]'),{CPT_Code:txtCPT_Code,CPT_Value:txtCPT_Value});Reset(txtCPT_Code);Reset(txtCPT_Value);
- Ants keep marching across top of screen
- No Errors
- No info
What can i check? Is this possibly a permissions thing cause I used the SQL Admin credentials?
Update
I was able to successfully add data to the database table using the SubmitForm() method. So that confirms the account has the access I need. So my problem must relate to how I am trying to patch() the data.
More Updates
I was able to get the Data Source Patched after creating a new login and user account on the DB with dbo rights. I will say that it sucks that you do not get a GUI Wizard when using SSMS with Azure SQL DBs. I am still fighting with some data source refreshes and unknown runtime errors but i am hoping that gets resolved.
Thanks
Matt