Hi Folks. I have an access application that is using SQL server 2019 for the backend. All of my "queries" work but when the Update and insert statements execute Access will display the append or Update warning but nothing is actually being written or changed in the SQL tables. I believe I need to establish a SQLOLEDB connection string in my access project but I am having trouble. I get a message the states "Object Required". Any assistance would be greatly appreciated. Thank you. So far my code for the connection looks like this:
Code:
Dim ConnStr As String ConnStr = "Provider=SQLOLEDB;Data Source='FalconXtreme';" & _ "Initial Catalog='SacDb';Integrated Security= TRUE;" objConn.Open ConnStr
Comment