help!高手请进

wxzltx 2002-05-14 04:17:16
做一个留言板,不知道数据库怎么连接,谁能给我一个连接的程序。到哪里可下载?
...全文
35 12 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
nickycheng 2002-05-15
  • 打赏
  • 举报
回复
方法不是很好...还要花时间去装vb
超级大笨狼 2002-05-15
  • 打赏
  • 举报
回复
我只有一种万能而且万无一失的连接方式,access,sql通吃,实际上我根本记不住连接语句,但我从不失手,我经常来这里推销这个办法,有人会看到很多次了,谁让总有人问呢?有一个办法保证你万无一失,你用vb的ado控件连接该库,(不用写任何代码!也不用设置dns)在vb里右键点击ado控件,在创建里连接一个库,然后检测连接成功就会自动生成正确的sql连接语句,拷贝出来用就可以了。我的qq号28963147。哈哈,我又推销了一次,万能狗皮膏药!!独家专利!!
zhenhao 2002-05-15
  • 打赏
  • 举报
回复
ADO连接数据库字符串大全(VP,Excel,文本,Sybase,.NET等)
发布于:2000-1-1
This page contains sample ADO connection strings for ODBC DSN / DSN-Less,
OLE DB Providers, Remote Data Services (RDS), MS Remote, MS DataShape.

Also included are ADO.NET connection strings for each .NET Managed Provider
(SQLClient, OLEDB, and ODBC).

These sample connection strings are compiled
by Carl Prothman, a Microsoft Visual Basic MVP
Enjoy!

 
Table of Contents
ODBC DSN Connections DSN
File DSN


ODBC DSN-Less Connections  ODBC Driver for AS/400
ODBC Driver for Access
ODBC Driver for dBASE
ODBC Driver for Excel
ODBC Driver for MySQL
ODBC Driver for Oracle
ODBC Driver for Paradox
ODBC Driver for SQL Server
ODBC Driver for Sybase
ODBC Driver for Sybase SQL Anywhere
ODBC Driver for Text
ODBC Driver for Teradata
ODBC Driver for Visual FoxPro


OLE DB Data Link Connections Data Link File (UDL)


OLE DB Data Provider Connections  OLE DB Provider for AS/400
OLE DB Provider for Active Directory Service
OLE DB Provider for DB2
OLD DB Provider for Internet Publishing
OLE DB Provider for Index Server
OLE DB Provider for Microsoft Jet
OLE DB Provider for ODBC Databases
OLE DB Provider for Oracle (From Microsoft)
OLE DB Provider for Oracle (From Oracle)
OLE DB Provider for Simple Provider
OLE DB Provider for SQL Server


Remote Data Service (RDS) Connections RDS Data Control - Connect Property
RDS Data Control - URL Property


ADO URL Connections ADO Recordset


MS Remote Provider Connections MS Remote - Access (Jet)
MS Remote - SQL Server


Data Shape Provider Connections  MS DataShape - SQL Server


.NET Managed Provider Connections SQL Client .NET Managed Provider (System.Data.SqlClient)
OLE DB .NET Managed Provider (System.Data.OleDb)
ODBC .NET Managed Provider (System.Data.ODBC)


 


ODBC DSN Connections
Using an ODBC DSN (Data Source Name) is a two step process.

1) You must first create the DSN via the "ODBC Data Source Administrator" program
found in your computer's Control Panel (or Administrative Tools menu in Windows 2000).
Make sure to create a SYSTEM DSN (not a USER DSN) when using ASP.
Note: You can also create the DSN via VB code.

2) Then use the following connection string - with your own DSN name of course.  ;-)

ODBC - DSN
 
oConn.Open "DSN=AdvWorks;" & _
          "Uid=Admin;" & _
          "Pwd=;


You can also create and use a File DSN. Then use the following ADO Connection string:

ODBC - File DSN
 
oConn.Open "FILEDSN=c:\somepath\mydb.dsn;" & _
          "Uid=Admin;" & _
          "Pwd=;"

For more information, see: About ODBC data sources and
How to Use File DSNs and DSN-less Connections

Note: The problem with DSN is that Users can (and will) modify them (or delete by mistake),
then your program won't work so well... So it's better to use a DSN-Less or OLE DB Provider
connection string with a Trusted Connection if possible!


ODBC DSN-Less Connections
ODBC Driver for AS/400
 
oConn.Open "Driver={Client Access ODBC Driver (32-bit)};" & _
          "System=myAS400;" & _
          "Uid=myUsername;" & _
          "Pwd=myPassword;"

For more information, see:  A Fast Path to AS/400 Client/Server


ODBC Driver for Access
 
For Standard Security:

oConn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _
          "Dbq=c:\somepath\mydb.mdb;" & _
          "Uid=Admin;" & _
          "Pwd=;"

If you are using a Workgroup (System database):

oConn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _
          "Dbq=c:\somepath\mydb.mdb;" & _
          "SystemDB=c:\somepath\mydb.mdw;", _
          "admin", ""

If MDB is located on a network share:

oConn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _
          "Dbq=\\myServer\myShare\myPath\myDb.mdb;"

For more information, see: Microsoft Access Driver Programming Considerations


ODBC Driver for dBASE
 
oConn.Open "Driver={Microsoft dBASE Driver (*.dbf)};" & _
         "DriverID=277;" & _
         "Dbq=c:\somepath;"

Note: Specify the filename in the SQL statement. For example:
     oRs.Open "Select * From user.dbf", oConn, , ,adCmdText

Note: MDAC 2.1 (or greater) requires the Borland Database Engine (BDE) to update dBase DBF files. (Q238431).

For more information, see: dBASE Driver Programming Considerations


ODBC Driver for Excel
 
oConn.Open "Driver={Microsoft Excel Driver (*.xls)};" & _
          "DriverId=790;" & _
          "Dbq=c:\somepath\mySpreadsheet.xls;" & _
          "DefaultDir=c:\somepath;"

For more information, see: Microsoft Excel Driver Programming Considerations


ODBC Driver for MySQL (via MyODBC)
 
To connect to a local database

oConn.Open "Driver={mySQL};" & _
          "Server=MyServerName;" & _
          "Option=16834;" & _
          "Database=mydb;"

To connect to a remote database

oConn.Open "Driver={mySQL};" & _
          "Server=db1.database.com;" & _
          "Port=3306;" & _
          "Option=131072;" & _
          "Stmt=;" & _
          "Database=mydb;" & _
          "Uid=myUsername;" & _
          "Pwd=myPassword;"

For more information, see: Programs Known to Work with MyODBC


ODBC Driver for Oracle
 
For the current Oracle ODBC Driver from Microsoft:

oConn.Open "Driver={Microsoft ODBC for Oracle};" & _
          "Server=OracleServer.world;" & _
          "Uid=myUsername;" & _
          "Pwd=myPassword;"

For the older Oracle ODBC Driver from Microsoft:

oConn.Open "Driver={Microsoft ODBC Driver for Oracle};" & _
          "ConnectString=OracleServer.world;" & _
          "Uid=myUsername;" & _
          "Pwd=myPassword;"

For more information, see: Connection String Format and Attributes


ODBC Driver for Paradox
 
oConn.Open "Driver={Microsoft Paradox Driver (*.db)};" & _
          "DriverID=538;" & _
          "Fil=Paradox 5.X;" & _
          "DefaultDir=c:\dbpath\;" & _
          "Dbq=c:\dbpath\;" & _
          "CollatingSequence=ASCII;"

Note: MDAC 2.1 (or greater) requires the Borland Database Engine (BDE) to update Paradox ISAM fDBF files. (Q230126).

For more information, see: Paradox Driver Programming Considerations


ODBC Driver for SQL Server

popcode 2002-05-14
  • 打赏
  • 举报
回复
access:
<%
DataBasePath = "database.mdb"
ConnString = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath(DataBasePath)
%>
coffee_cn 2002-05-14
  • 打赏
  • 举报
回复
建立数据源也是一种简单的方法,,,,,
hleio 2002-05-14
  • 打赏
  • 举报
回复
set conn = server.createobject("ADODB.CONNECTION")
Conn.Open "Driver={SQL SERVER};Server=SINOSOFT-SERVER;DataBase=kmsdb","kms","kms"
set rs=server.createobject("ADODB.Recordset")
julyclyde 2002-05-14
  • 打赏
  • 举报
回复
http://www.csdn.net/Expert/TopicView1.asp?id=595668
ChinaOk 2002-05-14
  • 打赏
  • 举报
回复
<%
dim conn
dim connstr
connstr="DBQ="+server.mappath("liuyan.mdb")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
set conn=server.createobject("ADODB.CONNECTION")
conn.open connstr
%>
scgqq 2002-05-14
  • 打赏
  • 举报
回复
set conn = server.createobject("ADODB.CONNECTION")
Conn.Open "Driver={SQL SERVER};Server=SINOSOFT-SERVER;DataBase=kmsdb","kms","kms"
set rs=server.createobject("ADODB.Recordset")
.......
shadowkiss 2002-05-14
  • 打赏
  • 举报
回复
留言板还不到处都是,
www.asp300.com 自已找喜欢的下吧
tripofdream 2002-05-14
  • 打赏
  • 举报
回复
请看FAQ
wuya0531 2002-05-14
  • 打赏
  • 举报
回复
真的假的,你真会做留言板,你说的是数据库的建立吧,去载些模板看看,有很多,如果可以的话可以交流一下,QQ:6623560,我也想学一点

28,409

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧