你SQL Command 不夠完整.
-- 你的 code
update pbdat set ? where pb_id = 0
沒有表明要 set 哪個欄位(column).
update pbdat set col = ? where pb_id = 0
col 要自己調整.
你的圖片裡的code,跟你外面的code 不同.
另外 json 跟資料庫,還有蠻多細節的.你先一步步來吧.
你SQL傳值的用法錯了,
SQL中的變數?不能直接傳JSON進去,{ expbb : 1 }並不會被解析成exppb=1的語句,
應該要寫為SET exppb=? ,然後傳入你要寫入exppb欄位的值(1)