Here are details:
I have a field where users might paste text from an office application. The field's contents are then inserted into a (SQLite) database field (of type text). Right now I create the SQL statement as just:
Code: Select all
put the label of button "ComboBoxStudent" of card "New Note" of stack "Grad Log" into aName
put the htmltext of field "FieldScratchPad" into aMemo
--the button contains a name, the field contains the text I want to post, student is the table's name
put "UPDATE student" && \
"SET scratchpad=""e&aMemo"e&& \
"WHERE name=""e&aName"e into tSQL