Hello!
I have a collection that I'm trying to save to an on-premise SQL Server database. I tried both Collect() and Patch() but they both trow the error: "The data source is read-only, so the function Collect can't write to it".
Patch('[dbo].[EquipmentRequests]',Defaults('[dbo].[EquipmentRequests]'), {Job: JobCboBox.Selected.Jobs});
Collect('[dbo].[EquipmentRequests]', EquipmentRequestCollection)Error:

The SQL database is successfully connected through the gateway (I'm reading data out of a different database on the same server). The database I'm attempting to write to is very simple:

I created a label with the following formula but it shows blank:
First(Errors('[dbo].[EquipmentRequests]')).Message
Any thoughts on what I can change or might be doing wrong?