- 论坛徽章:
- 0
|
我要使用OCI从一个表中查找一些数据,
text * sql =(text *)"select callstarttime from callcdr_info where callerno=: CallerNo ";
text *CallerNo="4444";//4444为测试用数据
sword callstarttime;
OCIStmt *stmthp;
OCIDefine *defnp1 = (OCIDefine *) 0;
OCIBind *bnd1p=(OCIBind *) 0;
1. 建立连接 获得 envhp, errhp ,srvhp, svchp,authp 成功
2. OCIHandleAlloc( (dvoid *) envhp, (dvoid **) &stmthp,OCI_HTYPE_STMT, (size_t) 0, (dvoid **) 0)
3. OCIStmtPrepare(stmthp, errhp, sql,(ub4) strlen((char *) sql),(ub4) OCI_NTV_SYNTAX, (ub4) OCI_DEFAULT)
4. OCIBindByName(stmthp, &bnd1p, errhp, (text *) ":CallerNo",-1, (dvoid *) CallerNo,40, SQLT_STR, (dvoid *) 0, (ub2 *) 0, (ub2 *) 0, (ub4) 0, (ub4 *) 0, OCI_DEFAULT);
5. OCIDefineByPos(stmthp, &defnp1, errhp, 1, (dvoid *)& callstarttime,(sword) sizeof(callstarttime), SQLT_INT, (dvoid *) 0, (ub2 *)0,(ub2 *)0, OCI_DEFAULT)
6. OCIStmtExecute(svchp, stmthp, errhp, (ub4) 0, (ub4) 0,(CONST OCISnapshot *) NULL, (OCISnapshot *) NULL, OCI_DEFAULT)
7. OCIStmtFetch(stmthp, errhp, (ub4) 1, (ub4) OCI_FETCH_NEXT,(ub4) OCI_DEFAULT)
8. 释放连接.
问题是,在已经确认数据库有CallerNo="4444"的数据时, OCIStmtExecute()的返回值是OCI_NO_DATA,当改为text * sql =(text *)"select callstarttime from callcdr_info where callerno='4444'"; 不使用OCIBindByName(),可以成功从数据库中获得数据.
请帮我看一下上面代码中那里存在错误,谢谢! |
|