안녕하세요.
MYSQL 에서 TEXT 필드를 하나 만들고
create table test(
no int(11) not null default '0' auto_increment primary key,
contents text not null
);
델파이에서 DBMemo 컨포넌트나 DBRichEdit 에서
데이터를 입력하고 POST 하게 되면 아래와 같은 에러가 뜹니다.
Project TEST.exe raised exception class EDBEngineError with message 'Non-blob
column in table required to perform operation.'. Process stopped. Use Step or Run to continue.
Non-blob column in table required to perform operation.
어떻게 하면 문제를 해결 할 수 있을까요?
답변 부탁드립니다.