使用dll的oracle连接

使用dll的oracle连接

本文介绍了使用dll的oracle连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hii乡亲
我想使用dll与oracle数据库建立连接,这是代码

hii folks
i want to create connection with oracle database using dll here is the code

OleDbConnection con = new OleDbConnection("connection string");
           OleDbCommand cmd = con.CreateCommand();
           cmd.CommandText = "select sb_no from shipbill where sb_no=''4790421''";
           con.Open();
           OleDbDataReader dr = cmd.ExecuteReader();
           while (dr.Read())
           {
               textBox2.Text = dr["sb_no"].ToString();
           }


如何在应用程序中使用它



从哪里可以获取所需的dll
请帮助我
提前thanx ...祝您有美好的一天...


how can i use it in my application

OR

from where can i get the desired dll
plz help me
thanx in advance...have a nice day...

推荐答案



这篇关于使用dll的oracle连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 13:04