On Thu, Jan 21, 2016 at 10:51 PM, John Dixon <dixo...@hotmail.co.uk> wrote:

>
> Can someone tell me what I am doing wrong here ?
>

I guess you've figured it out by now, but just in case:

>
>    put "INSERT INTO" & tTableName & "(" & tFields & ") VALUES(:1,:2)" into
> tSQL
>

= INSERT INTOthenamer(thename,thechat) VALUES(:1,:2)

I think you want:

put "INSERT INTO" && tTableName && "(" & tFields & ") VALUES(:1,:2)" into
tSQL

= INSERT INTO thenamer (thename,thechat) VALUES(:1,:2)

HTH
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to