テーブルを作成しました
create table test_clob(
value clob
);
4000 バイトを超えるデータ サイズでこのテーブルに挿入しようとすると、次のエラーが発生します。
SQL Error: ORA-01704: string literal too long
01704. 00000 - "string literal too long"
*Cause: The string literal is longer than 4000 characters.
*Action: Use a string literal of at most 4000 characters.
Longer values may only be entered using bind variables.
バインド変数の使い方がわかりません...