文章源代码: msaccess_sp2.zip 介绍 欢迎来到ms access存储过程的第二部分讨论。第一部分详细地描述了如何使用ado.net和visual basic.net在access中创建存储过程. 第二部分将会示范如何通过数据库访问层访问在第一部分已经创建的存储过程,你可以模仿它并且用在自己的应用程序里。这篇文章会详细地描述如何使用visual basic.net实现数据库的访问层。 数据库层的主要目的是通过类模块提供一个访问数据库的网关。这个类模块将充当数据库和应用程序之间的粘合剂。利用数据库访问层来访问数据库有2个优点:你可以有改变你的后台数据库技术(从access改到sql server)而不影响应用系统的能力。你还能够通过在应用程序和数据库访问层之间增加一个控制层,来保证传过去的数据是“纯净”的。在.net里,数据库访问层通常会包括一个遵循面向对象规范的类模块,而visual basic 的较早的版本会使用一个标准模块来处理。 数据库访问层 - 代码 现在该是我们卷起袖子来看一些代码的时候了。在添加一个空类以后的第一件事情,就是列出这里需要使用的.net类库,如下所示: imports system imports system.data imports system.data.oledb system 库 对大多数程序来说是标准的, 但是我把它作为一个习惯,在所有的代码中都包含这个类库。而system.data 库则是一个对于大多数数据库访问程序都需要的库。system.data.oledb 将用在访问access所需要的ole db provider。如果我们需要使用sql server,则我们最好使用定制的sql provider system.data.sqlclient. 下一行开始了类的定义 public class dbtier 这里我们定义类名为 dbtier, 并且给他public 修饰符, 因此它将可以被其他代码模块访问。在类定义以后,将声明所有要用到的属性。 shared connectionstring as string = _ "provider=microsoft.jet.oledb.4.0;data source=c:/program " _ & "files/microsoft office/office10/samples/northwind.mdb" 这里只声明了一个string属性,connectionstring. 这个变量保存了 northwind access数据库的连接字符串。声明这个变量为shared,说明它是一个“类变量(class variable)”,一个class variable是和类关联的,二不是和这个类产生的每个对象相关联。(译者:vb.net的shared 修饰符相当于c++或c#的static修饰符) 在连接字符串的定义之后,你可以看到这里有3个过程和1个函数。函数返回了一个包含所有产品列表的dataset。它调用了在第一部分已经创建的存储过程 procproductslist. 然后你可以看到3个过程。他们对应于每个存储过程,用于增加、删除、修改产品;它们都有类似的结构; 每个使用了一个command,并声明了连接对象和必须的参数。 作为一个例子, 我们来分开讨论productsdeleteitem过程。理解了这个过程,其他2个就很容易消化了. 一开始,这个过程使用了一个参数, productid, 表示需要删除的产品的id。 sub productsdeleteitem(byval productid as integer) 接着,声明了所有的变量. 分别用于存储过程将要使用的connection,command和parameter. 这个参数就是需要删除的那格产品id. dim con as oledbconnection dim cmd as oledbcommand = new oledbcommand() dim paramproductid as new oledbparameter() command和connection的初始化: con = new oledbconnection(connectionstring) cmd.connection = con 确认了paramproductid 参数的属性,然后这个参数被添加到command对象. 在这个例子中,要用到存储过程里的参数名字是inproductid, 它是一个整型变量,并用函数的参数进行赋值。 with paramproductid .parametername = "inproductid" .oledbtype = oledbtype.integer .size = 4 .value = productid end with cmd.parameters.add(paramproductid) 最后一步是真正调用存储过程. cmd.commandtext = "execute procproductsdeleteitem" con.open() cmd.executenonquery() con.close() 注意connection对象这里只在需要执行存储过程的时候保留,然后就马上关闭了。这将减少可能有的资源占用。 虽然这个例子中使用的dbtier类已经清楚的介绍了如何使用access存储过程, 它的功能仍然需要更多的增强来达到产品级的水平。因为没有错误处理。他仍然需要更多的强化。 本文的源代码包括了dbtier.vb,这个文件同时包含了一些简单的form来测试类的实现。 总而言之,我希望您至少通过这些文章获得了2个信息:一个是在microsoft access中存储过程是存在的并且是不错的, 虽然有不足。第二个你需要同时理解需要把应用程序的数据库访问分解到独立的类、函数、过程里面,这将使软件的维护和升级变得更加容易。 完整的dbtier.vb: imports system imports system.data imports system.data.oledb
' functions and subroutines for executing stored procedures in access. public class dbtier
' change data source to the location of northwind.mdb on your local ' system. shared connectionstring as string = _ "provider=microsoft.jet.oledb.4.0;data source=c:/program " _ & "files/microsoft office/office10/samples/northwind.mdb" ' this function returns a dataset containing all records in ' the products table. function productslist() as dataset dim con as oledbconnection dim da as oledbdataadapter dim ds as dataset dim ssql as string
ssql = "execute procproductslist"
con = new oledbconnection(connectionstring) da = new oledbdataadapter(ssql, con) ds = new dataset() da.fill(ds, "products")
return ds
end function
' this function adds one record to the products table. sub productsadditem(byval productname as string, _ byval supplierid as integer, byval categoryid as integer) dim con as oledbconnection dim cmd as oledbcommand = new oledbcommand() dim paramproductname as new oledbparameter() dim paramsupplierid as new oledbparameter() dim paramcategoryid as new oledbparameter()
con = new oledbconnection(connectionstring) cmd.connection = con
with paramproductname .parametername = "inproductname" .oledbtype = oledbtype.varchar .size = 40 .value = productname end with cmd.parameters.add(paramproductname)
with paramsupplierid .parametername = "insupplierid" .oledbtype = oledbtype.integer .size = 4 .value = supplierid end with cmd.parameters.add(paramsupplierid)
with paramcategoryid .parametername = "incategoryid" .oledbtype = oledbtype.integer .size = 4 .value = categoryid end with cmd.parameters.add(paramcategoryid)
' this function updates a specific jobtitle record with new data. sub productsupdateitem(byval productid as integer, _ byval productname as string) dim con as oledbconnection dim cmd as oledbcommand = new oledbcommand() dim paramproductname as new oledbparameter() dim paramproductid as new oledbparameter()
con = new oledbconnection(connectionstring) cmd.connection = con
with paramproductid .parametername = "inproductid" .oledbtype = oledbtype.integer .size = 4 .value = productid end with cmd.parameters.add(paramproductid)
with paramproductname .parametername = "inproductname" .oledbtype = oledbtype.varchar .size = 40 .value = productname end with cmd.parameters.add(paramproductname)
' this function deletes one record from the products table. sub productsdeleteitem(byval productid as integer) dim con as oledbconnection dim cmd as oledbcommand = new oledbcommand() dim paramproductid as new oledbparameter()
con = new oledbconnection(connectionstring) cmd.connection = con
with paramproductid .parametername = "inproductid" .oledbtype = oledbtype.integer .size = 4 .value = productid end with cmd.parameters.add(paramproductid)