I am having two SQL tables in a Azure SQL, they are a bit different but consists only of a few nvarchar(255) and Int columns.
The application is editing these tables through simple forms and it was working from the beginning, but now I am recieving error "An error occurred on the server. Server respose: Not a valid connector Error response" as soon as I am trying to edit a row in ONE of the tables. But the other one works..?
Viewing data (rows) is still possible in both.
I have tried:
- Recreate the Connection with SA admin for the database.
- Recreate the application in new tenant against the same SQL.
- Recreating the SQL Table with different name on another SQL-server.
But the application still throws this error, are PowerApps having some issues here or what's cause this issues on my SQL-table?
What else could i try?
Added the error message as an attchment.
CREATE TABLE [dbo].[Test](
[Id] [int] PRIMARY KEY IDENTITY(1,1) NOT NULL,
[TEST1] [int] NOT NULL,
[TEST2] [nvarchar](255) NOT NULL,
[TEST3] [nvarchar](255) NOT NULL,
[TEST4] [nvarchar](255) NOT NULL,
[TEST5] [nvarchar](255) NOT NULL,
[TEST6] [nvarchar](255) NOT NULL,
[TEST7] [nvarchar](255) NOT NULL,
[TEST8] [datetime] NOT NULL,
[TEST9] [nvarchar](255) NOT NULL,
[TEST10] [nvarchar](255) NOT NULL,
[TEST11] DECIMAL(12,3) NOT NULL,
[TEST12] [datetime] NOT NULL,
[TEST13] [nvarchar](255) NULL,
[TEST14] DECIMAL(12,3) NOT NULL,
[TEST15] [nvarchar](255) NOT NULL,
[TEST16] [nvarchar](255) NOT NULL,
[TEST17] [nvarchar](255) NOT NULL,
[TEST18] [int] NOT NULL,
[TEST19] [nvarchar](255) NOT NULL,
[TEST20] [nvarchar](255) NOT NULL)
(No of course I didnt named my records TestX, that's only here)