OracleSQL语句中的Update可以和SEQUENCE联合使用,以达到更新某字段的值连续编号,而不需要使用游标去逐条遍历更新数据库记录。例如updatesamplesetid=seq_id.nextval;
Oracle中的select语句允许使用case语句。例如:selectcol1,casewhencol1>1then'exist'else'no'endcol2fromtab;
PROC编程中将PROC源文件编译成PROC文件语句(其中参数可选):prociname=file.cpponame=file.cxxthreads=yes;
//proc文件转化
prociname=file.cpponame=file.cxxthreads=yes
//proclib库文件
clntsh
//oraclelibpath
/home/oracle/u01/app/oracle/product/10.1.0/db_1/lib
//gdb前执行语句
ulimit-cunlimited
//gdb实例
gdbtestcore.9959
C++编码中的类型使用和转换:
conststring&iv_value
constchar*lv_value
lv_value=iv_value.c_str()
conststring&iv_value
char*lv_value
lv_value=(char*)iv_value.c_str()
判断string类变量为空
stringls_value
if(true==ls_value.empty()){}
判断指针为空
char*lc_value
if(NULL==lc_value){}