Search results

  1. N

    Implementing Parameterized Queries in DAO for Enhanced Security in Access- SQL Server Application

    I understand that Access has incredible functionalities that I'm not currently utilizing in this workflow. The primary reason I use Access as the front end is due to existing limitations within my organization when it comes to installing certain software. Access is an accepted and approved...
  2. N

    Implementing Parameterized Queries in DAO for Enhanced Security in Access- SQL Server Application

    I have also considered using stored procedures in SQL Server and executing them from a QueryDef, similar to my initial query. The difference is that instead of using a dynamic query with @DECLARE, I am now using a stored procedure. I am unsure which option to choose—stored procedures...
  3. N

    Implementing Parameterized Queries in DAO for Enhanced Security in Access- SQL Server Application

    Thank you for the quick response. I will look into the ADODB solution you mentioned. By any chance, do you know if it is compatible with Access Runtime 2013?
  4. N

    Implementing Parameterized Queries in DAO for Enhanced Security in Access- SQL Server Application

    I am developing a front-end application for data entry in Access. The database is hosted on SQL Server, and I only use Access to interact with it. All queries are performed through DAO via ODBC connection. However, I have realized that my code is at risk of SQL injection when concatenating...
Top Bottom