Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > insert ลง access ไม่ผ่านอะคับ ดูให้ที มันฟ้องว่า syntex error in Update ประมาณนั้นคับ



 

insert ลง access ไม่ผ่านอะคับ ดูให้ที มันฟ้องว่า syntex error in Update ประมาณนั้นคับ

 



Topic : 044237



โพสกระทู้ ( 292 )
บทความ ( 0 )



สถานะออฟไลน์




มันฟ้องว่า syntex error in Update ประมาณนั้นคับ และเวลากดบันทึก msg ขึ้นมาว่า กรุณากรอกข้อมูลให้ครบ(จิงๆกรอกครบแล้ว)



Code (VB.NET)
Private Sub btn_save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_save.Click
        'กดปุ่ม Save
        Dim cmd As OleDb.OleDbCommand = Nothing 'จัดเก็บค่าของคำสั่ง sql
        Dim sqlUpdate As String = "" ' จัดเก็บคำสั่ง SQL สำหรับเพิ่ม หรือ แก้ไขข้อมูล                                                                                  

        'ทำการตรวจสอบความถูกต้องข้อมูลก่อนการรับข้อมูล
        If txtid_addr.Text = "" Then
            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)
            txtid_addr.Focus()
            Exit Sub

        ElseIf (Trim(txtmoo.Text) = "") Then

            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)

            txtmoo.SelectionStart = 0
            txtmoo.SelectionLength = Len(txtmoo.Text)
            txtmoo.Focus()

            Exit Sub

      
        ElseIf (Trim(txtvillage.Text) = "") Then

            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)

            txtvillage.SelectionStart = 0
            txtvillage.SelectionLength = Len(txtvillage.Text)
            txtvillage.Focus()

            Exit Sub
        ElseIf (Trim(txtsub.Text) = "") Then

            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)

            txtsub.SelectionStart = 0
            txtsub.SelectionLength = Len(txtsub.Text)
            txtsub.Focus()

            Exit Sub
        ElseIf (Trim(txtamper.Text) = "") Then

            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)

            txtamper.SelectionStart = 0
            txtamper.SelectionLength = Len(txtamper.Text)
            txtamper.Focus()

            Exit Sub
        ElseIf (Trim(txtprovince.Text) = "") Then

            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)

            txtprovince.SelectionStart = 0
            txtprovince.SelectionLength = Len(txtprovince.Text)
            txtprovince.Focus()

            Exit Sub

        Else
           
            MessageBox.Show("กรุณากรอกข้อมูลให้ครบ", "คำเตือน", MessageBoxButtons.OK, MessageBoxIcon.Information)

            txtzip.SelectionStart = 0
            txtzip.SelectionLength = Len(txtzip.Text)
            txtzip.Focus()
        End If

        Select Case actionFlag
            
            Case "EDIT"

                sqlUpdate = "UPDATE Address "
                sqlUpdate &= " SET Moo = '" & txtmoo.Text & "', "
                sqlUpdate &= " Village_Name = '" & txtvillage.Text & "', "
                sqlUpdate &= " Sub = '" & txtsub.Text & "',"
                sqlUpdate &= " District = '" & txtamper.Text & "',"
                sqlUpdate &= " Province = '" & txtprovince.Text & "',"
                sqlUpdate &= " Zip = '" & txtzip.Text & "',"
                sqlUpdate &= " WHERE Address_id = " & txtid_addr.Text

            Case Else
                Exit Sub

        End Select

        'ทำการนำค่าการการแก้ไข,เพิ่มไปเก็บไว้ใน  cmd
        cmd = New OleDbCommand(sqlUpdate, Connection)

        'นำค่า myCommand ไปเก็บใน cmd เพื่อทำการตรวจสอบก่อนการบันทึกข้อมูล
        recordAffected = cmd.ExecuteNonQuery()

        MessageBox.Show("ท่านต้องการบันทึกการแก้ไข: " & txtid_addr.Text & " ใช่หรือไม่?", "ยืนยันการบันทึกข้อมูล", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
        
        If recordAffected > 0 Then  ' เพิ่ม หรือ แก้ไขได้สำเร็จ
            MessageBox.Show("บันทึกเรียบร้อย", "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Information)
          
        Else
            MessageBox.Show("ไม่สามารถบันทึกได้", "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Error)
         End If
        Call Locked()               'เรียกใช้งาน locked
        actionFlag = ""
    End Sub




Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-06-19 17:52:01 By : adunafah View : 1242 Reply : 8
 

 

No. 1



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ลองดูบรรทัดที่ 079 ให้ดีๆ






Date : 2010-06-19 19:06:09 By : tungman
 


 

No. 2



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

Quote:
sqlUpdate &= " Zip = '" & txtzip.Text & "',"


ตามคุณ tungman ครับ
Date : 2010-06-19 20:38:34 By : webmaster
 

 

No. 3



โพสกระทู้ ( 292 )
บทความ ( 0 )



สถานะออฟไลน์


งง ครับท่าน ว่ามันต่างกันตรงไหน sqlUpdate &= " Zip = ' " & txtzip.Text & " ' ,"

ช่วยทีคับ เกือบละ
Date : 2010-06-19 23:49:30 By : adunafah
 


 

No. 4



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


จะดีรึ แล้วถ้าผมเผลอแก้เป็นคำสั่ง drop table แล้วคุณจะรู้ไหมเนี่ย
Date : 2010-06-20 08:18:28 By : tungman
 


 

No. 5



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

Quote:
,


เกินมาครับ
Date : 2010-06-20 09:27:14 By : webmaster
 


 

No. 6



โพสกระทู้ ( 292 )
บทความ ( 0 )



สถานะออฟไลน์


มันฟ้องว่า data type mismath in criticel อะคับ
Date : 2010-06-21 13:38:42 By : adunafah
 


 

No. 7

Guest


เอา table structure มาลงให้ครบ cap screen มาเลยครับ อย่า copy text มา
Date : 2010-06-21 14:21:40 By : tungman
 


 

No. 8

Guest


Data type missmath คือข้อมูลที่คุณเอาไปใส่มันไม่ตรงกับชนิดข้อมูลที่คุณสร้างไว้ในฐานข้อมูลไงคับ
Date : 2010-06-22 15:03:17 By : whiteshark
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : insert ลง access ไม่ผ่านอะคับ ดูให้ที มันฟ้องว่า syntex error in Update ประมาณนั้นคับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่