我的表是:錯誤更新列
CREATE TABLE A(
id serial NOT NULL,
date timestamp without time zone,
type text,
sub_type text,
filename text,
filepath text,
filesize integer,
);
我有一個更新程序:
$Query = "UPDATE A SET type=\"" . $strType . "\" where id=" . intval($ID);
問題:
當$ strType是一個字符串,如 「生菜」我得到這個錯誤:
ERROR: column "lettuce" does not exist
當它是一個int,沒有錯誤。
想法?
更多的背景:
- 插入代碼添加文件名,文件路徑,這兩個文本類型的成功
感謝您的反饋意見。 – cbrulak 2009-02-04 07:45:48