Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 oracle 数据库中使用 C 程序在表的 blob 列中插入空白数据,但它作为 Null 插入,如何使其空白而不是 null。数据类型是 lpBlob。
根据您对“空白”的定义,我的假设是您想使用该empty_blob功能
empty_blob
INSERT INTO table_name( ..., blob_column_name ) VALUES( ..., empty_blob() );