You are on page 1of 1

put "Hello " into field "Field" //scriu

put field "Field" into MyVar //citesc


answer MyVar

function q pText
-- return the text surrounded by single quotes
return "'" & pText & "'"
end q

put "INSERT INTO Customer (" & q("FName") & comma & q("SName" & ") " into tSQL

put tData into url ("file:" & tFilePath)


put the result into tResult
if tResult is not empty then
# Handle error here
else
# Continue execution
end if

You might also like