|
|
|
บันทึกข้อมูลที่เป็นตัวเลขลง sql server + asp.net คือจะให้รับข้อมูลทาง textbox รับข้อมูลเป็น ตัวเลข |
|
|
|
|
|
|
|
คือจะให้รับข้อมูลทาง textbox รับข้อมูลเป็น ตัวเลข (EX. 1200.00) แล้วทำการ Insert ลงใน SQL server ค่ะแต่มันติดเออเรอ Could not find stored procedure 'False'
ส่วนข้างล่างนี้คือโค้ดที่เขียนแล้วติดเออเรอค่ะ
Code (VB.NET)
Protected Sub BTAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles BTAdd.Click
Dim objConn As New SqlConnection
Dim objCmd As New SqlCommand
Dim strConnString, strSQL As String
strConnString = "Server=.;UID=sa;PASSWORD=123;database=ACCMRC_database;" 'Max Pool Size=400;Connect Timeout=600;"
strSQL = "INSERT INTO BCAR (code,Name1,defcontactcode,billaddress,telephone,Fax,debtlimit1,salecode) " & _
" VALUES " & _
" ('" & Me.txtcode.Text & "','" & Me.txtname.Text & "','" & Me.txtcontact.Text & "', " & _
" '" & Me.txtaddress.Text & "','" & Me.txtTel.Text & "','" & Me.txtFax.Text & "'," & _
" '" & Me.txtdebt.Text = FormatNumber("1234.5678", 2) & "','" & Me.txtsalecode.Text & "')"
objConn.ConnectionString = strConnString
objConn.Open()
With objCmd
.Connection = objConn
.CommandText = strSQL
.CommandType = CommandType.Text
End With
objConn.Close()
objConn = Nothing
End Sub
Tag : - - - -
|
|
|
|
|
|
Date :
2009-04-03 14:24:02 |
By :
august_kae |
View :
2005 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเดานะครับแต่เผื่อช่วยได้
1 ลอง convert ข้อมูล text ให้ข้อมูลเป็น double ก่อนมั้ยครับ
2 ตอน insert ข้อมูลที่เป็นตัวเลข ไม่ต้องมี '50','25','xxxข้อมูลstring' แบบนี้ น่าจะป็น 50,25,'xxxข้อมูลstring'
|
|
|
|
|
Date :
2009-04-03 15:07:19 |
By :
slatun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อืม อันข้อที่2. เราไม่เข้าใจน่ะค่ะ
ช่วยลงตัวอย่างโค้ดได้ไหมคะ (ขอบคุณล่วงหน้าค่ะ)
|
|
|
|
|
Date :
2009-04-03 15:13:33 |
By :
august_kae |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|