Recent content by bitflipper

  1. B

    Is SQL Server 2016 Always Encrypted Right For Me?

    The resolution to my problem was to convert my function from DAO to ADO. Hope the following code helps someone else down the road: Public Function ExecuteSPWithParamsQueryADO(pSPROCName As String, ParamArray pParams() As Variant) As ADODB.RecordSet...
  2. B

    Is SQL Server 2016 Always Encrypted Right For Me?

    Rewriting my function to use ADO rather than DAO solved the problem. Here is my code in hopes that it helps someone else: Public Function ExecuteSPWithParamsQueryADO(pSPROCName As String, ParamArray pParams() As Variant) As ADODB.RecordSet...
  3. B

    Is SQL Server 2016 Always Encrypted Right For Me?

    I will look into Access 2016 support for Always Encrypted. Thank you.
  4. B

    Is SQL Server 2016 Always Encrypted Right For Me?

    If I upgrade to a newer version of MS Access do you think that will resolve this particular issue?
  5. B

    Is SQL Server 2016 Always Encrypted Right For Me?

    SQL Server 2016 Always Encrypted Parameterization I'm evaluating whether or not SQL Server 2016 Always Encrypted will work with an existing MS Access 2010 Application that I support. Here's my current roadblock: My application calls many SQL Server stored procedures that require parameters. I...
Top Bottom