How to perform SQL INSERT from vbs script

  • Thread starter Thread starter Siegfried Heintze
  • Start date Start date
The following SQL statement works for me and is an insert

strSQL = "INSERT INTO tblEmployees [fldClockNo], [fldName] VALUES '" &
ClockNo & "', '" & name & "'"

Quite hard to make out the single quote characters but that works.
 
Back
Top