1,看看注册表里的字符串设置2,可以用rowtype的方法在pl/sql块里操作特殊字段类型,下面是以前的一个例子
-- Created on 2002-8-28 by solidpanther
declare 
  -- Local variables here
  BAD_ROWID EXCEPTION;
i integer;
  cursor c is select * from tbl_photo;
  aa  tbl_photo%rowtype;
  PRAGMA EXCEPTION_INIT(BAD_ROWID,-01445);begin
  -- Test statements here可以插照片了!
open c;
  fetch c into aa;
  while c%found loop
        insert into a (aaa) values (aa.photo);
        fetch c into aa;
  end loop; 
  close c;
  EXCEPTION /*WHEN first_exception THEN
            dbms_output.put_line('asdfasdfasdfasdfsdf');