|
|
|
แจ้งเตือน error แบบนี้ค่ะ ([Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near ','. |
|
|
|
|
|
|
|
ไม่สามารถบันทึกข้อมูลได้ [UPDATE Loan SET Submission = , MacaqueCash = , Cash = , WaitReceive = WHERE LoanID = '11' ] ([Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near ','.)
ขอช่วยพี่ๆช่วยดูให้หน่อยน่ะคะ่ยังแก้ไม่ได้เลยค่ะ ขอบคุณล่วงหน้าสำหรับน้ำใจค่ะ
ข้างล่างเป็นโค้ดที่เขียนเพื่อทำการค้นหาข้อมูลเดิมขึ้นมาแก้ไขและจะทำการอัพเดทแต่พอกดบันทึกก็ error เหมือนข้างบนน่ะค่ะ
*Submission,MacaqueCash,Cash,WaitReceive เก็บเป็น decimal ค่ะ
<%@LANGUAGE="VBSCRIPT" CODEPAGE="874"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<!--#include file="config.asp"-->
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {
font-size: 28px;
font-weight: bold;
font-family: FreesiaUPC;
}
.style7 {font-size: 26px; font-weight: bold; font-family: FreesiaUPC; }
.style8 {font-family: FreesiaUPC; font-size: 26px; }
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="70%" border="1" align="center">
<tr>
<td colspan="4"><img src="images/band1.jpg" width="800" height="150" /></td>
</tr>
<tr bordercolor="#6699FF" bgcolor="#CCCCFF">
<th width="17%" bordercolor="#6699FF"><div align="center" class="style7">หน้าแรก</div></th>
<th width="30%"><div align="center" class="style8">บันทึกสัญญาเงินยืม</div></th>
<th width="30%"><div align="center" class="style8">สืบค้นข้อมูลลูกหนี้</div></th>
<th width="23%"><div align="center" class="style8">รายงานข้อมูลลูกหนี้</div></th>
</tr>
<tr>
<td colspan="4"><div align="center">
<p>
<%
Dim strSQL,objExec
LoanID=Request.querystring("LoanID")
strSQL = "UPDATE Loan SET "
strSQL = strSQL& " Submission = "&Request.querystring("textfield13")&" "
strSQL = strSQL&" , MacaqueCash = "&Request.querystring("textfield15")&" "
strSQL = strSQL&" , Cash = "&Request.querystring("textfield14")&" "
strSQL = strSQL&" , WaitReceive = "&Request.querystring("textfield16")&" "
strSQL = strSQL& "WHERE LoanID = '"&(LoanID)&"' "
Set objExec = Server.CreateObject("ADODB.Recordset")
objExec.Open strSQL, Conn1, 1,3
Set objExec = Conn1.Execute(strSQL)
If Err.Number = 0 Then
Response.write("การบันทึกข้อมูลสำเร็จ")
Else
Response.write("ไม่สามารถบันทึกข้อมูลได้ ["&strSQL&"] ("&Err.Description&")")
End IF
Conn1.Close()
Set objExec = Nothing
Set Conn1 = Nothing
%>
</p>
<p> </p>
<p class="style1"><a href="search_ borrow.asp">กลับ</a></p>
<p> </p>
</div></td>
</tr>
<tr>
<td colspan="4"><img src="images/new copy.gif" width="800" height="70" /></td>
</tr>
</table>
</form>
</body>
</html>
Tag : ASP, VBScript
|
|
|
|
|
|
Date :
2010-10-20 21:24:47 |
By :
ทำโปรเจคค่ะ |
View :
2013 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนอีกรอบค่ะพี่วิน เอาโค้ดที่พี่ให้ไปใส่แล้วค่ะ แต่ error อีกครั้งค่ะ
ไม่สามารถบันทึกข้อมูลได้ [UPDATE Loan SET Submission = '' , MacaqueCash = '' , Cash = '' , WaitReceive = '' WHERE LoanID = '11' ] ([Microsoft][ODBC SQL Server Driver][SQL Server]Error converting data type varchar to numeric.)
|
|
|
|
|
Date :
2010-10-20 23:01:41 |
By :
ทำโปรเจคค่ะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|