oci 指示器变量!-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3976924
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2008-06-30 11:36:14

现在要实现这样的功能!

create table tab1(a int, b varchar(10));

insert into tab1 values(1, 'abc');
insert into tab1 values(2, 'abcd');
insert into tab1 values(3, null);
insert into tab1 values(4, 'abcx');

采用oci一次bind来实现,由于其中有字段值为null,上次绕开了这个问题来实现的,现在没办法绕了就得解决。 今天学习了一下! (看来还是直面解决问题的好,今天不解决明天还是一样会来的)
sword ocibindbypos ( ocistmt      *stmtp, 
ocibind **bindpp,
ocierror *errhp,
ub4 position,
dvoid *valuep,
sb4 value_sz,
ub2 dty,
dvoid *indp,
ub2 *alenp,
ub2 *rcodep,
ub4 maxarr_len,
ub4 *curelep,
ub4 mode );
indp的合理使用就可以解决了,原来一致用null的。看看oci文档就明白了,
input indicator value action taken by oracle
-1 oracle assigns a null to the column, ignoring the value of the input variable.
>=0 oracle assigns the value of the input variable to the column.


----------
下面是一篇不错的oci文章! 引用了指示变量这一小部分!

指示器变量:
        由于在oracle中,列值可以为null,但在c语言中没有null值,为了能使oci程序表达null列值,oci函数允许程序为所执行语句中的结合变量同时关联一个指示符变量或指示符变量数组,以说明所结合的占位符是否为 null或所读取的列值是否为null,以及所读取的列值是否被截取。
        除sqlt_nty(sql named datatype)外,指示符变量或指示符变量数组的数据类型为sb2,其值说明:
        作为输入变量时:(如insert ,update语句中)

from:

=========================================================
2008-08-04 今天有遇到这个问题:

sword ocidefinebypos ( ocistmt     *stmtp, 
ocidefine **defnpp,
ocierror *errhp,
ub4 position,
dvoid *valuep,
sb4 value_sz,
ub2 dty,
dvoid *indp,
ub2 *rlenp,
ub2 *rcodep,
ub4 mode );
用define取数据的时候也必须设置indp为什么呢? 我原来只设置了一个rlenp,个人认为一个长度变量就可以控制取出来的数据长度的,但我细细想来不是这样的,null数据怎么办呢?

注意:null数据可以长度为0的数据,在oracle中他们是不同的数据,那这样长度变量就没办法表示了。
阅读(2228) | 评论(0) | 转发(0) |
0

上一篇:oracle over usage!

下一篇:oracle ora-04106

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图