给个参考,虽然是有关dephi的,但也许有用。
http://expert.csdn.net/Expert/topic/1604/1604718.xml?temp=.7778894

解决方案 »

  1.   

    没做过clob的
    以前做过blob的
    用selectblob就可以了,到pb版去问问应该有人知道。
      

  2.   

    select dbms_lob.substr(col_lob) from table_name
      

  3.   

    The following statements select the blob column Emp_pic from a row in the Employee table and set the picture p_1 to the bitmap in Emp_id_pic (the transaction object Emp_tran is used):Blob  Emp_id_picSELECTBLOB Emp_pic
    INTO  :Emp_id_pic 
    FROM Employee
    WHERE Employee.Emp_Num = 100
    USING Emp_tran ;
    p_1.SetPicture(Emp_id_pic)The blob Emp_id_pic requires a colon to indicate it is a host (PowerScript) variable when you use it in the INTO clause of the SELECTBLOB statement.帮助上没说能操作clob。
      

  4.   

    如果clob字段内的数据不超过2000字符可以直接用SELECT取得超过2000的大字段用流读写.