贴篇文章,BETA2中ACCESS操作数据库
2024-09-07 19:04:58
供稿:网友
朋友们好,回家已经有10天了,总算是开始学。net了,直接的感觉就是ms的帮助太差了,好多错误在上面,害的我走了好多弯路,结果好多东西还没有完全搞好,简直了!
由于beta2和beta1比较,变化太大了,而现在无论是书还是网络上的资料基本都还停留在beta1上,是朋友们在学习的时候遇到好多问题还无处可查,这里我把我的学习过程中遇到的一些问题和体会拿出来与大家分享,希望能给也在学习过程中的朋友有些帮助!
我估计,朋友们在学习。net的过程中,遇到的最多的问题就是在和数据库打交道的过程中了!所以这次我准备就从在beta2中如何操作数据库开始了,数据库采用我们最常用的access数据库(其实是学习最常用的,实际中我更喜欢sql数据库的)
在beta2中,。net提供了以下的namespace:
system.data namespace
system.data.oledb (和beta1中已经不同了,所以如果拿beta1中的程序到beta2中来运行肯定不可以的)
如果想讲清楚这些东西,我不认为是我可以作到的,所以我想通过一些具体的程序来把我们对数据库的最基本的操作(select、update、delete、insert等)演示一下,其他的还是需要朋友们在学习过程中来慢慢体会了!
要想操作一个数据库,不论是那种操作,首先要做的肯定是打开数据库,下面我们以access数据库来做例子说明如何打开一个数据库连接!在这里我们需要用到的是:system.data.oledb.oledbconnection类!(如果操作sql数据库,我们最好使用system.data.sqlclient.sqlconnection类)
我先写出我自己使用的程序:
using system.data
using system.data.oledb
public oledbconnection getconn()
{
string connstr="provider=microsoft.jet.oledb.4.0 ;data source=f://web//notesbook//class//leavenotes.mdb";
oledbconnection tempconn= new oledbconnection(connstr);
return(tempconn);
}
相信只要使用过ado的朋友应该都可以看懂的!我们先定义一个string类型的变量,其中存放了我们连接数据库的连接字符串,然后在定义一个system.data.oledb.oledbconnection类型的对象并实例化,最后返回这个对象!需要说明一下的是,我并没有把语句:tempconn.open();放到这个函数中,原因我我稍后在说明,这里只是先提醒一下!
通过上面的函数,我们就已经得到了类似于ado中的连接对象connection了!下面的就是具体操作数据库了!
在具体讲操作前,我认为有必要先认识一下下面的两个类:
system.data.oledb.oledbdataadapter
system.data.oledb.oledbdatareader
system.data.oledb.oledbdataadapter:可以直接和dataset联系,并操作数据源的,它的功能相对强大一些,因此也比较耗系统资源!
system.data.oledb.oledbdatareader:则有些类似于ado中的哪个只读向前的记录集,它最常用在只需要依次读取并显示数据的时候,相比system.data.oledb.oledbdataadapter来说,他耗用的系统资源要小!其实,oledbdatareader能实现的功能,oledbdataadapter都可以实现,不过从资源使用率的角度考虑我们应该尽量使用前者!但有些功能,却是必须使用oledbdataadapter才可以实现的!
。select操作!
下面是我的自己在写测试程序的时候用到了,先列出来看看oledbdatareader和oledbdataadapter是如何操作从数据库中选择记录的:
//通过id得到当前留言详细内容.通过string类型参数
public notebook getnotefromid(string noteid)
{
notebook tempnote=new notebook(); //定义返回值
try
{
oledbconnection conn = getconn(); //getconn():得到连接对象
string strcom = "select * from notes where id=" + noteid ;
oledbcommand mycommand =new oledbcommand(strcom,conn);
conn.open();
oledbdatareader reader;
reader =mycommand.executereader() ; //执行command并得到相应的datareader
//下面把得到的值赋给tempnote对象
if(reader.read())
{
tempnote.id=(int)reader["id"];
tempnote.title=reader["title"].tostring();
tempnote.content=reader["content"].tostring();
tempnote.author=reader["author"].tostring();
tempnote.email=reader["email"].tostring();
tempnote.http=reader["http"].tostring();
tempnote.pic=reader["pic"].tostring();
tempnote.hits=(int)reader["hits"];
tempnote.posttime=(datetime)reader["posttime"];
}
else //如没有该记录,则抛出一个错误!
{
throw(new exception("当前没有该记录!"));
}
reader.close();
conn.close();
}
catch(exception e)
{
//throw(new exception("数据库出错:" + e.message)) ;
}
return(tempnote); //返回databook对象
}
上面的程序就是通过oledbdatareader来得到特定的记录的!其中用到的语句我单独写到下面:
oledbconnection conn = getconn(); //getconn():得到连接对象
string strcom = "select * from notes where id=" + noteid ; //sql语句
oledbcommand mycommand =new oledbcommand(strcom,conn); //建立oledbcommand对象
conn.open(); //注意我在前面说的open语句在这里使用到了!
oledbdatareader reader;
reader =mycommand.executereader() ; //执行command并得到相应的结果
我在每句话后都加入了说明,其中oledbconnection conn = getconn();就是通过我前面提到的getconn函数来得到数据库连接的,其他语句没有什么好说的,都很简单,就不多说了!
我再列一个通过oledbdataadapter来得到记录的例程:
//getlist():得到当前需要的留言列表
public dataview getnotelist()
{
dataview dataview;
system.data.dataset mydataset; //定义dataset
try
{
oledbconnection conn = getconn(); //getconn():得到连接对象
oledbdataadapter adapter = new oledbdataadapter();
string sqlstr="select * from notes order by posttime desc";
mydataset= new system.data.dataset();
adapter.selectcommand = new oledbcommand(sqlstr, conn);
adapter.fill(mydataset,"notes");
conn.close();
}
catch(exception e)
{
throw(new exception("数据库出错:" + e.message)) ;
}
dataview = new dataview(mydataset.tables["notes"]);
return(dataview);
}
这个程序或许有些复杂,同样的,我还是先把那些关键语句列出,并说明:
oledbconnection conn = getconn(); //通过函数getconn()得到连接对象
oledbdataadapter adapter = new oledbdataadapter(); //实例化oledbdataadapter对象
string sqlstr="select * from notes order by posttime desc"; //sql语句
mydataset= new system.data.dataset(); //由于oledbdataadapter需要和dataset结合使用,所以在这里定义了dataset对象,其实说oledbdataadapter复杂,其实就是因为dataset的缘故dataset有些类似于ado中的recordset 对象,但功能远远超过了它,而且它和数据库是断开的,并能存放多个记录集!
adapter.selectcommand = new oledbcommand(sqlstr, conn); //设置命令为selectcommand类型的
adapter.fill(mydataset,"notes"); //执行,并将结果添加到mydataset中的”notes”表中
conn.close(); //关闭连接!
在对上面的程序加一些补充说明,由于getnotelista是得到一系列记录,并通过控件datagrid来做分页显示的,所以我返回的是一个dataview类型的对象!
啊呀,太晚了,今天就到这里,我要休息了,其它几个操作我在以后在说吧,呵呵,睡觉了!