 |
|
สอบถามปัญหาคำสั่ง SQL 2008 save ข้อมูลให้ลงฐานโดยการกำหนด text box ครับ |
|
 |
|
|
 |
 |
|
Code (VB.NET)
Imports System.Data
Imports System.Data.SqlClient
Public Class Form1
Dim Conn As SqlConnection = New SqlConnection
Dim da As SqlDataAdapter
Dim add_state As Boolean = False
Dim dt As New DataTable
' Dim db As New DataTable
Dim land As SqlCommand
Private bin As New BindingSource
Dim currRecPos As Integer
Dim addNewMode As Boolean
Dim ds As DataSet = New DataSet
Dim IsFind As Boolean = False
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim strConn As String
strConn = "Data Source=.\SQLEXPRESS;Initial Catalog=SSPEGIS4;Integrated Security=True"
Dim sqlupdate As String
Dim sqladd As String
sqlupdate = "update land"
sqlupdate &= " set PARCEL_CODE = '" & txtPARCEL_CODE.Text & "',"
sqlupdate &= " TAMBON_TH= '" & txtTAMBON_TH.Text & "',"
sqlupdate &= " DISTRICT_TH= " & Val(txtDISTRICT_TH.Text) & ","
sqladd = "insert into land (PARCEL_CODE,TAMBON_TH,DISTRICT_TH)"
sqladd &= " values ('" & txtPARCEL_CODE.Text & "',"
sqladd &= " '" & txtTAMBON_TH.Text & "',"
sqladd &= "'" & txtDISTRICT_TH.Text & "',"
Try
With Conn
If .State = ConnectionState.Open Then .Close()
.ConnectionString = strConn
.Open()
End With
land = New SqlCommand
With land
.CommandType = CommandType.Text
If add_state = True Then
.CommandText = sqladd
Else
.CommandText = sqlupdate
End If
.Connection = Conn
.ExecuteNonQuery()
End With
Catch ErrorToEdit As Exception
MessageBox.Show(ErrorToEdit.Message & sqladd, "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Error)
Exit Sub
End Try
add_state = False
MessageBox.Show("บันทึกข้อมูลเสร็จแล้ว ", "แจ้งให้ทราบ", MessageBoxButtons.OK, MessageBoxIcon.Information)
End Sub
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
addNewMode = True
currRecPos = bin.Position
bin.AddNew()
End Sub
End Class
ตัวอย่าง ผมเขียนเเบบถูกมั้ยครับ ช่วยเเนะนำหน่อยครับ คือผมมีหลายตาราง เเต่อยากให้ตารางเดียวที่อยากให้ Save ลงฐาน ส่วนตารางอื่น เอาไว้โชว์ ข้อมูลเฉยๆ
Tag : .NET, Ms SQL Server 2008, Win (Windows App), VS 2008 (.NET 3.x)
|
|
 |
 |
 |
 |
Date :
2010-11-22 18:32:19 |
By :
pisansri |
View :
1449 |
Reply :
4 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
บรรทัดที่ 44 ) หายครับ และเอา , ออกด้วย แล้วก็เวลาเขียน แนะนำให้ทำงานแค่คำสั่งเดียวครับ จะ update ก็ update อย่างเดียวก็พอครับ หรือ จะ insert ก็ inerst อย่างเดียวก็พอครับ ถ้าไม่จำเป็น ไม่ต้องเขียนทั้ง update และ insert เหรกครับ โปรแกรมมันจะช้าและจะทำให้เราสับสนอีกด้วยครับ แล้วก็ตรงที่ update อย่าลืม where เพิ่มด้วยนะครับ จะได้รู้ว่าไปแก้ไข ข้อมูลชุดไหน
|
 |
 |
 |
 |
Date :
2010-11-22 21:01:13 |
By :
kanchen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เหมื่อนคุณเคยบันทึกข้อมูลได้แล้วนิ ในกระทู้ก่อนๆ
รึว่าอยากหาวิธีใหม่ๆ

|
 |
 |
 |
 |
Date :
2010-11-23 08:52:07 |
By :
watcharop |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
คราวก่อน บัน ทึกได้เเล้วครับเเล้ว เเต่ตอนนี้เขียนโชว์ ในฟอร์ม มันมีมากกว่า สอง ตารางเลย เลย จะกำหนดtextbox ครับ ตอนนี้ตัวนี้ก้อ บันทึกได้เเล้วครับพึ่งเเก้ได้เมื่อคืน หลังโพสกระทู้ นี้ ขอบคุณครับ ถ้าไม่ได้พวกพี่ๆเเนะนำผมถึงไม่มาได้ไกลขนาดนี้เเล้วครับ
|
 |
 |
 |
 |
Date :
2010-11-23 09:32:18 |
By :
pisansri |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|