인포믹스에서 insert 할때요.
INSERT INTO total
(simname,stdname,teaname,hakyear,term,first,second,third,four)
values
('$simname','$stdname','$teaname','$hakyear','$term','$first','$second','$third','$four')
이렇게 했습니다.
그랬더니 617: A blob data type must be supplied within this
context.
이런 에러가 뜨더군요.
찾아보니까 first,second,third,four의 타입이 text라서
그런거라는것 까지는 알았습니다.
이것을 insert시키려면 어떻게 해야하나요??
답변 부탁드립니다.
|