Fixed my own sql issue :stuck_out_tongue_winking_eye:

Reversed everything so the primary key was the last parameter and works, makes sense when you see it.

UPDATE QB_user
SET  COMMENTS = ?,  SOURCE = ?, LOCATION = ?, MOBILE = ?,   EMAIL = ?,  LAST_NAME = ?, FIRST_NAME = ?
WHERE QB_user.USER_IP = ?;

parameter-update

2 Likes