开始数据库操作。
常见的组件封装
1.把数据库的连接信息封装起来。
1> 直接返回数据库连接串,如,组件中
Public Function datasource() As Variant
datasource = "driver={sql server};server=yang;uid=sa;pwd=;database=northwind"
End Function
asp调用
set obj=server.CreateObject("webdb.getinfo")
oconn=obj.datasource()
这样的缺点是很明显的,在asp文件中,直接response.write oconn即可显示出数据库连接串,并没有起到预期的作用。
http://blog.csdn.net/online/category/9939.aspx?Show=All
第一个打分
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5