oracle OCI lob操作

时间:2021-10-26 10:52:30

可以有两种方式来bind lob字段

1)直接绑定lob 值

2)绑定lob locator指针

对于 直接绑定lob值的操作如下

char* sql = "insert into tab_lob(id,lob) values(:1,:2)";
OCIStmtPrepare(stmthp, errhp, sql, strlen(sql), OCI_NTY_SYNTAX, OCI_DEFAULT);
OCIBindByPos(stmtp, &bindhp[], errhp, , &id, sizeof(int), SQLT_INT, , , , , OCI_DEFAULT);
OCIBindByPos(stmtp, &bindhp[], errhp, , buffer, , SQLT_LNG, , , , , OCI_DEFAULT);
OCIStmtExecute(svchp, stmthp, errhp, , , NULL, NULL, OCI_DEFAULT);

但是这种方式有一个问题,就是只能绑定lob的大小小于4000字节,如果过大的话,会报错 ORA-24816。

另外一种方式就是绑定lob locator指针来操作

 OCILobLocator* lob;

 OCIBindByPos(stmthp, &bindhp[], errhp, , &id, sizeof(int), SQLT_INT, , , , , OCI_DEFAULT);
OCIDescriptorAlloc(envhp, &lob, OCI_DTYPE_LOB, , NULL);
memset(temp, 'a', );
c_len = ;
OCILobCreateTemporary(svchp, errhp, lob, OCI_DEFAULT, SQLCS_IMPLICIT, OCI_TEMP_CLOB, FALSE, OCI_DURATION_SESSION);
OCILobWrite(svchp, errhp, lob, &c_len, , temp, , OCI_ONE_PIECE, NULL, NULL, OCI_DEFAULT, SQLCS_IMPLICIT);
OCIBindByPos(stmthp, &bindhp[], errhp, , &lob, sizeof(OCILobLocator*), SQLT_CLOB, , , , , OCI_DEFAULT);
OCIStmtExecute(svchp, stmthp, errhp, , , NULL, NULL, OCI_DEFAULT);