A sample of a command would be:
[database connection].execute "update dbtable set dbfield='" &
[textfield.text] & "' where primkey = " & primkeytrack & ""
Thank you in advance...
Martin
One technique is to pass textfield.text through a function that doubles any
apostrophes it finds. Then use the "doubled-up" copy of the text in your
SQL statement.
-john.