oracle oci 调用 1
http://blog.163.com/earth_of_fire/blog/static/1368943200791211622278/(总结)
http://blog.163.com/earth_of_fire/blog/static/1368943200791223416510/(数据列表)
http://blog.163.com/earth_of_fire/blog/static/13689432007918112936198/(select)
http://www.cnblogs.com/hustskyking/p/webAudio-listen.html
http://blog.csdn.net/evgd2288/article/details/6607035 (好)
http://hi.baidu.com/mgqw864/item/e54b48552b8a56978d12ed7f()
http://blog.csdn.net/wbj1234566/article/details/2003200()
http://read.pudn.com/downloads51/sourcecode/windows/database/176187/OCIExample/OCIExampleDlg.cpp__.htm:
http://www.pudn.com/downloads51/sourcecode/windows/database/detail176187.html
http://read.pudn.com/downloads195/sourcecode/database/916923/testoci/testociDlg.cpp__.htm
http://www.pudn.com/downloads195/sourcecode/database/detail916923.html
- void COCIExampleDlg::OnButtonConnect()
- {
- this->UpdateData (); //更新数据
- //代码5.2,处理SQL的第一步,准备SQL
- wsprintf((char*)textSQL, "SELECT * FROM Score %s",SQL);
- if(status=OCIStmtPrepare(stmthp, errhp,textSQL, strlen((char*)textSQL),OCI_NTV_SYNTAX, OCI_DEFAULT))
- {
- ErrorProc (errhp, status) ;
- return;
- }
- //代码5.3,处理SOL的第三步,执行
- if (status=OCIStmtExecute(svchp, stmthp,errhp, (ub4)0, 0, NULL, NULL, OCI_DEFAULT))
- {
- ErrorProc (errhp, status) ;
- return;
- }
- //代码5.4,处理SOL的第四步,描述
- //代码5.4.1,读取选择列表中的项数
- ErrorProc(errhp, OCIAttrGet(stmthp,OCI_HTYPE_STMT,&col_num, 0, OCI_ATTR_PARAM_COUNT,errhp ));
- int ColumnNumbers=(int) col_num;
- text *namep; //字段名称
- ub4 sizep; //字段名称的字符串长度
- text tempText[100];
- //获取表的字段的属性信息
- int nindex=m_CombolFieldName.GetCurSel();
- if(nindex<0) nindex=0;
- m_CombolFieldName.ResetContent();
- for(int i=0;i<(int)col_num; i++)
- {
- //为选择项分配参数描述符
- ErrorProc(errhp, OCIParamGet(stmthp,OCI_HTYPE_STMT, errhp, (void**)&colhp, ub4(i+1)));
- //读取选择项的数据长度
- ErrorProc(errhp, OCIAttrGet(colhp, OCI_DTYPE_PARAM,&collen[i], 0, OCI_ATTR_DATA_SIZE, errhp ));
- //读取选择项的数据类型
- ErrorProc(errhp, OCIAttrGet(colhp, OCI_DTYPE_PARAM,&coltype[i],0, OCI_ATTR_DATA_TYPE, errhp));
- //若这个字段为日期型,则把其字符宽度置为50
- if (coltype[i]==SQLT_DATE)collen[i] =50;
- //分配缓冲区
- colbuf[i]=(text*)new text[(int)collen[i]+1];
- //代码5.4.2获取字段名称
- ErrorProc(errhp, OCIAttrGet(colhp, OCI_DTYPE_PARAM,(dvoid*)&namep, (ub4*)&sizep, OCI_ATTR_NAME, errhp ));
- strncpy((char*)tempText, (char*)namep, (size_t)sizep) ;
- tempText [sizep]= '\0';
- m_grid.SetTextMatrix(0,i+1,(const char *)tempText); //将数据写入表格控件
- m_CombolFieldName.AddString((const char *)tempText); //将字段名称添加入下拉列表框
- }
- m_CombolFieldName.SetCurSel (nindex);
- //代码5.5,处理SQL的第五步,定义变量
- for(i=0; i<(int)col_num; i++)
- {
- if (status=OCIDefineByPos (stmthp,&defhp[i],errhp, i+1,(ub1*)colbuf[i],
- collen[i]+1,SQLT_STR,&ind[i], 0, 0, OCI_DEFAULT))
- {
- ErrorProc(errhp, status);
- return;
- }
- }
- //代码5.6,处理SQL的第六步,取值
- int row=0;
- CString tempstr;
- while((OCIStmtFetch(stmthp, errhp,1,OCI_FETCH_NEXT,OCI_DEFAULT))!=OCI_NO_DATA)
- {
- row = row+1;
- m_grid.SetRows(row+1); //根据数据的行数动态设置表格控件的最大行数
- tempstr.Format ("%d",row);
- m_grid.SetTextMatrix(row,0,tempstr); //设置序号
- for(i=0; i<(int)col_num; i++)
- {
- tempstr=(char*)colbuf[i];
- tempstr.TrimRight(' '); //删除右空格
- //把获取的用户的基表的数据赋予字段数值数组
- m_grid.SetTextMatrix(row,i+1,tempstr);
- }
- }
- SQL="";
- }
oracle oci 调用 1的更多相关文章
- 基于Oracle OCI的数据访问C语言接口ORADBI .
基于Oracle OCI的数据访问C语言接口ORADBI cheungmine@gmail.com Mar. 22, 2008 ORADBI是我在Oracle OCI(Oracle 调用接口)基础 ...
- ORACLE存储过程调用Web Service
1. 概述 最近在ESB项目中,客户在各个系统之间的服务调用大多都是在oracle存储过程中进行的,本文就oracle存储过程调用web service来进行说明.其他主流数据库,比如mysql和sq ...
- .NET易忘备留 ORACLE存储过程调用
1.Oracle存储过程调用[返回信息,单体或者列表] public IResult FundBuild(string partnerId,string userId, DateTime beginD ...
- Qt编译Oracle OCI驱动
最近使用qt开发了一个访问数据库的工具, 默认使用ODBC驱动注入的方式,后来发现Oracle中ODBC驱动注入经常失败. 后来就想直接使用OCI方式访问,而默认情况下Qt只有Sqlite和ODBC驱 ...
- oracle 存储过程 调用动态sql
oracle 存储过程 调用动态sql CreationTime--2018年8月16日11点25分 Author:Marydon 1.错误实现方式 --开始时间拼接' 00:00:00' V_S ...
- Oracle OCI操作UDT相关学习(二)
沿用 Oracle OCI操作UDT相关学习 一文中定义的类型和表. 1.更改数据 在sqldeveloper 中更新数据, update dxl.cust set addr.street='a11' ...
- Oracle 存储过程调用语句
#oracle 存储过程调用语句declare v_custName varchar2(10); --客户姓名 v_num number; --订单分布天数 v_time number; --每日订单 ...
- oracle 存储过程调用 执行
oracle 存储过程调用 博客分类: 数据库相关 oracle存储过程 2011年02月11日 星期五 14:47 SQL中调用存储过程语句: call procedure_name(); 调用 ...
- Oracle OCI操作UDT相关学习
1.Oracle数据类型 Oracle的数据类型如下 字符串类型 char nchar varchar2 nvarchar2 数值类型 int number integer smallint 日期类型 ...
随机推荐
- UNIX网络编程读书笔记:poll函数
poll函数提供的功能与select类似,不过在处理流设备时,它能够提供额外的信息. poll函数原型 #include <poll.h> int poll(struct pollfd * ...
- 显示游戏FPS帧率的几种计算方式
FPSDisplay.cs using UnityEngine; using System.Collections; public class FPSDisplay : MonoBehaviour { ...
- Tetris
he Tetris game is one of the most popular computer games ever created. The original game was designe ...
- leetCode(29):Happy Number
Write an algorithm to determine if a number is "happy". A happy number is a number defined ...
- ACE-Streams架构简介及应用
一概述 Streams框架是管道和过滤构架模式的一种实现,主要应用于处理数据流的系统.其实现以Task框架为基础.Task框架有两个特性非常适用于Streams框架:一是Task框架可用于创建独立线程 ...
- 基于 bootstrap 的数据展示--bootgrid 样式改动。
bootgrid 的官网案例 http://www.jquery-bootgrid.com/Examples 官方demo 样式 基于项目须要,取消了一些不须要 的功能,改动了源代码 最后样式成了这样 ...
- 【LeetCode】90. Subsets II (2 solutions)
Subsets II Given a collection of integers that might contain duplicates, S, return all possible subs ...
- Ubuntu下设置redis让其他服务器访问
修改redis配置文件,将 bind 127.0.0.1to bind 0.0.0.0Then restart your service (service redis-server restart) ...
- 摘:C#压缩文件
[[[[C#压缩文件]]]] 方法1: //[filepath想要压缩文件的地址] //[zippath输出压缩文件的地址] private void GetFileToZip(string file ...
- AppCompat v23.2 -- Vectors的时代
表示速度真快啊,刚公布的23.2,就有人写blog了 原文:https://medium.com/@chrisbanes/appcompat-v23-2-age-of-the-vectors-91cb ...