最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net与c#通过oledb连接Oracle
时间:2022-06-25 06:05:18 编辑:袖梨 来源:一聚教程网
asp教程.net 连接oracle
然后再按钮里面代码如下:
string constr = system.configuration.configurationmanager.apps教程ettings["connectionstring"].tostring();
oracleconnection conn = new oracleconnection(constr);
conn.open();
下面看c#连接
先装oracle客户端
1、控制面板->管理工具->数据源(odbc)->添加数据源->选择oracle 客户端
data source name 可以任意起名,推荐和sid一样
description 描述
tns service name 下拉菜单中会自动显示环境变量tns_admin所指目录下的tnsnames.ora文件中service_name的名称,也就是要连接的sid userid 用户名
2、代码
string connectionstring = "data source=orcl; user id=scott; password=scott"; //连接字符串
oracleconnection conn = new oracleconnection(connectionstring); //创建一个新连接try
{
conn.open(); //打开连接
oraclecommand cmd = conn.createcommand();cmd.commandtext = "select * from emp"; //sql语句
oracledatareader rs = cmd.executereader();while (rs.read()) //读取数据,如果rs.read()返回为false的话,就说明到记录集的尾部了
{
messagebox.show(rs.getstring(1));
}rs.close();
}catch (exception e)
{
messagebox.show(e.message);
}
finally
{
conn.close();
}
相关文章
- dnf神界版本魔道学者装备搭配毕业攻略 装备怎么选 11-29
- 冒险岛枫之传说枫叶币获取方法 11-29
- 崩坏星穹铁道华尔街之狼成就攻略 正确选项一览 11-29
- 星球重启星雪精灵位置汇总 星雪节全星雪精灵分布地点 11-29
- dnf神界版本搬砖图推荐 神界版本怎么搬砖 11-29
- 蓝色星原旅谣薄纱流派搭配方法 11-29