创建如下表,
CREATE TABLE "T_BLOB"
(
  BLOB1  BLOB SUB_TYPE TEXT SEGMENT SIZE 80 NOT NULL,
  ID  INTEGER NOT NULL,
 PRIMARY KEY ("ID")
);
我要对这个表插入数据,请问各位, BOLB1 是什么类型,对应的数据应该怎么处理,
比如说 insert into t_bolb values(?,1);    ?应该怎么样表示,万分感谢。

解决方案 »

  1.   

    BDE-enabled datasets all have a CacheBlobs property that controls whether BLOB fields are cached locally by the BDE when an application reads BLOB records. By default, CacheBlobs is True, meaning that the BDE caches a local copy of BLOB fields. Caching BLOBs improves application performance by enabling the BDE to store local copies of BLOBs instead of fetching them repeatedly from the database server as a user scrolls through records.In applications and environments where BLOBs are frequently updated or replaced, and a fresh view of BLOB data is more important than application performance, you can set CacheBlobs to False to ensure that your application always sees the latest version of a BLOB field.