<<< 返回 access911.net 编程静态资料库索引页 新手来看:ADO的几种连接字串 作者: 摘自: 录入:cg1 时间:2003-8-17 浏览人次:1974
专题地址:http://access911.net/index.asp?u1=a&u2=78FAB71E1BDC 如果需要更详细的评论或说明,请点击该地址。 简述:
Data Source OLE DB Connection String Microsoft Access | Provider=Microsoft.Jet.OLEDB.4.0;Data Source=physical path to .mdb file |
JET DB 4.0 连接 TXT | Provider=microsof.jet.oledb.4.0;data source=physical path to .txt file ;Extended Properties =text;FMT=Delimited'" |
JET DB 4.0 连接 Excel | Provider=microsof.jet.oledb.4.0;data source=physical path to .xls file ;Extended Properties =Excel 8.0;" |
VB 代码 with ADODB.CONNECTION .Provider = "Microsoft.Jet.OLEDB.4.0" .ConnectionString = "Data Source=C:\MyFolder\My..................... ........... |
|