如何往clob类型中插入一个超过10000 bytes 的字符串

来源:互联网 发布:会声会影软件免费吗 编辑:程序博客网 时间:2024/06/07 06:59
如何往clob类型中插入一个超过10000 bytes 的字符串

You'll have to assign the value to a variable & use the variable to insert the data

DECLARE
    v_long_text CLOB;
BEGIN
    v_long_text := 'your long string of text';

    INSERT INTO table
    VALUES      (1,
                 v_long_text);
END; 
To make it clear: there are limits set to character strings:

you cannot have a string literal over

4000 bytes in SQL
32k in PLSQL

If you want to go above this, you'll have to use bind variables.
0 0
原创粉丝点击