HOME > ASP > ASP Forum > ใช้ ASP ติดต่อข้อมูลกับ Access มันขึ้นมาว่า Code ADODB.Connection error '800a0ea9' Provider is not specified and there is no designated
ใช้ ASP ติดต่อข้อมูลกับ Access มันขึ้นมาว่า Code ADODB.Connection error '800a0ea9' Provider is not specified and there is no designated
<BODY>
<%
Set Conn=Server.Createobject("ADODB.Connection")
อันนี้ Line 14Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("test/product.mdb"),"" , ""
sql ="Select * From product"
Set Rs = Conn.Execute(sql)
Tag : - - - -
Date :
13 ธ.ค. 2549 13:26:43
By :
tong
View :
2567
Reply :
3
No. 1
Guest
ไม่รู้ว่าเป็นอะไรช่วยหน่อยนะครับ
Date :
13 ธ.ค. 2549 13:28:15
By :
tong
No. 2
Guest
ลองเขียน แบบนี้ดูนะ
Set conn=Server.CreateObject("ADODB.Connection")
conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.mappath("test/product.mdb")
sql = "SELECT * FROM product "
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 1,3
if NOT(RS.EOF) Then
xx
else
xx
end if