How to insert several fields into a table using ADO when two of the fields contain commas
问题 I have an ado created recordset in access 2010 it returns 9 different fields from a stored procedure on sql server 2008 r2. I am trying to use this recordset (which does populate) to insert all of the records into a table that matches the output. My issue is that two of the fields are name fields that have commas in them. For example Smith, Joseph-- I need to insert that comma into the appropriate field. Right now it throws an error because of the comma in the field. Here is the code that I