|
|
|
asp+foxpro ขอความช่วยเหลือเรื่องการ Insert, Update ข้อมูล ด้วยนะครับ ถ้ามีตัวอย่างได้ก็จะดีมากครับ |
|
|
|
|
|
|
|
Go to : asp เขียน ติดต่อ กับ ฐานข้อมูล dbf ได้หรือไม่....
Code (ASP)
<%
Dim strSQL,objExec
Set ConnDBF = Server.CreateObject("ADODB.connection")
ConnStr= "Driver=Microsoft Visual Foxpro Driver; " + _
"UID=;SourceType=DBC;SourceDB=C:\Data.DBC"
ConnDBF.Open ConnStr ,1,3
strSQL = ""
strSQL = strSQL &"INSERT INTO employee "
strSQL = strSQL &"(SM_Name,SM_SName) "
strSQL = strSQL &"VALUES "
strSQL = strSQL &"('"&Request.Form("txtSM_CODEs")&"','"Request.Form("txtSM_Name")&"', '"&Request.Form("txtSM_SName")&"') "
Set objExec = ConnDBF.Execute(strSQL)
If Err.Number = 0 Then
Response.write("Save Done.")
Else
Response.write("Error Save ["&strSQL&"] ("&Err.Description&")")
End If
ConnDBF.Close()
Set objExec = Nothing
Set ConnDBF = Nothing
%>
Go to : ASP INSERT ข้อมูลลงในฐานข้อมูล .DBF ได้ไหมครับ !!!!!
Go to : เขียน asp ดึงข้อมูลจาก .DBF ครับ งมมาหลายวัน แค๊ก ๆ
|
|
|
|
|
Date :
2011-08-01 20:48:57 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|