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,036

HOME > .NET Framework > Forum > Syntax error statement. vb.net กับ access ครับ



 

Syntax error statement. vb.net กับ access ครับ

 



Topic : 069349

Guest




Code (VB.NET)
Imports System.Data
Imports System.Data.OleDb

Public Class adduser

    Dim con As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=database/database.mdb;")
    Dim cmd As OleDbCommand
    Dim myDA As OleDbDataAdapter

    Dim Cnn As New OleDbConnection(Cnnstring)
    Dim Cnnstring As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=database/database.mdb;"
    Dim SqlSelect As String
    Dim OleReader As OleDbDataReader
    Dim UserIDA As String
    Dim PassIDA As String
    Dim IsFind As Boolean


    Dim myDataAdapter As New OleDbDataAdapter
    Dim myDataset As New DataSet()
    Dim myDataRow As DataRow
    Dim SqlComm, myTable As String



    Private Sub ขอมลผใชในระบบToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub

    Private Sub ออกจากระบบToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub

    Public Sub ShowData()
        cmd = New OleDbCommand("Select * FROM tb_user", con)
        If con.State = ConnectionState.Closed Then con.Open()
        myDA = New OleDbDataAdapter(cmd)
        myDataset = New DataSet()
        myDA.Fill(myDataset, "MyTable")
        DataGridView1.DataSource = myDataset.Tables("MyTable").DefaultView

        con.Close()


    End Sub
    Private Sub DatagridID()
        Dim DatagridAllSale As DataGridTableStyle = New DataGridTableStyle
        Dim C1 As New DataGridTextBoxColumn
        Dim C2 As New DataGridTextBoxColumn

        With DatagridAllSale
            .AlternatingBackColor = Color.PaleTurquoise
            .BackColor = Color.White
            .MappingName = "tb_card"
        End With

        With C1
            .HeaderText = "รหัสบัตร"
            .MappingName = "id_card"
            .Alignment = HorizontalAlignment.Center
            .ReadOnly = True
            .Width = 150
        End With
        DatagridAllSale.GridColumnStyles.Add(C1)
        With C2
            .HeaderText = "สถานะบัตร"
            .MappingName = "status"
            .Alignment = HorizontalAlignment.Center
            .ReadOnly = True
            .Width = 150
        End With
        DatagridAllSale.GridColumnStyles.Add(C2)

    End Sub

    Private Sub adduser_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'TODO: This line of code loads data into the 'DatabaseDataSet.tb_user' table. You can move, or remove it, as needed.
        Me.Tb_userTableAdapter.Fill(Me.DatabaseDataSet.tb_user)
        ShowData()
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        If TextBox5.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        ElseIf TextBox6.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        ElseIf TextBox2.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        ElseIf TextBox3.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        Else

            Cnnstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=database/database.mdb;"
            With Cnn
                If .State = ConnectionState.Open Then Close()
                .ConnectionString = Cnnstring
                .Open()
            End With
            SqlSelect = "select * from tb_user Where username = " & "'" & TextBox5.Text & "'"
            Dim OleCommand As New OleDbCommand(SqlSelect, Cnn)
            Dim intNumRows As Integer
            intNumRows = OleCommand.ExecuteScalar
            If intNumRows > 0 Then
                MessageBox.Show("มี username นี้ในระบบแล้ว", "ขัดข้อง", MessageBoxButtons.OK, MessageBoxIcon.Warning)
                Cnn.Close()
            Else
                cmd = New OleDbCommand("Insert Into tb_user(username,password,firstname,surname) Values('" & TextBox5.Text & "', '" & TextBox6.Text & "', '" & TextBox2.Text & "', '" & TextBox3.Text & "')", con)
                If con.State = ConnectionState.Closed Then con.Open()
                cmd.ExecuteNonQuery()
                ShowData() 'Rebinding to DataGridView and view result
                MessageBox.Show("เพิ่ม username นี้ในระบบแล้ว", "เสร็จ", MessageBoxButtons.OK, MessageBoxIcon.Information)
                con.Close()
            End If




        End If

        
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

        If TextBox5.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        ElseIf TextBox6.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        ElseIf TextBox2.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        ElseIf TextBox3.Text = "" Then
            MessageBox.Show("ข้อมูลไม่ครบ", "ใส่ข้อมูล", MessageBoxButtons.OK, MessageBoxIcon.Error)
        Else

            Cnnstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=database/database.mdb;"
            With Cnn
                If .State = ConnectionState.Open Then Close()
                .ConnectionString = Cnnstring
                .Open()
            End With
            SqlSelect = "select * from tb_user Where username = " & "'" & TextBox5.Text & "'"
            Dim OleCommand As New OleDbCommand(SqlSelect, Cnn)

            Dim intNumRows As Integer
            intNumRows = OleCommand.ExecuteScalar
            Cnn.Close()
            If intNumRows > 0 Then

                cmd = New OleDbCommand("Update tb_user Set password='" & TextBox6.Text & ",'firstname='" & TextBox2.Text & ",surname='" & TextBox3.Text & " Where username='" & TextBox5.Text & "'", con)
                If con.State = ConnectionState.Closed Then con.Open()
                cmd.ExecuteNonQuery()
                ShowData() 'Rebinding to DataGridView and view result
                MessageBox.Show("แก้ไข username นี้ในระบบแล้ว", "เสร็จ", MessageBoxButtons.OK, MessageBoxIcon.Information)

            Else
                MessageBox.Show("ไม่พบ username นี้ในระบบ", "ขัดข้อง", MessageBoxButtons.OK, MessageBoxIcon.Warning)
            End If

            con.Close()


        End If



        
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        cmd = New OleDbCommand("Delete * From tb_user Where username='" & TextBox5.Text & "'", con)
        If con.State = ConnectionState.Closed Then con.Open()
        cmd.ExecuteNonQuery()
        ShowData() 'Rebinding to DataGridView and view result
        MessageBox.Show("ลบ username นี้ในระบบแล้ว", "เสร็จ", MessageBoxButtons.OK, MessageBoxIcon.Information)
        con.Close()
    End Sub

    Private Sub DataGridView1_CellMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles DataGridView1.CellMouseClick
       

    End Sub

    Private Sub DataGridView1_CellMouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles DataGridView1.CellMouseUp
        If e.RowIndex = -1 Then Exit Sub

        With DataGridView1
            TextBox5.Text = .Rows.Item(e.RowIndex).Cells(0).Value.ToString()
            TextBox6.Text = .Rows.Item(e.RowIndex).Cells(1).Value.ToString()
            TextBox2.Text = .Rows.Item(e.RowIndex).Cells(2).Value.ToString()
            TextBox3.Text = .Rows.Item(e.RowIndex).Cells(3).Value.ToString()

            TextBox5.Focus()
            TextBox5.SelectAll()
        End With
    End Sub
End Class



มันขึ้น Syntax error statement ในโค้ด insert กับ update ครับ
cmd.ExecuteNonQuery() ติดตรงนี้

ส่วน delete ใช้งานได้ปกติ

ตัวอย่างค่าsqlที่สมบูรณ์ตอนรันครับ
"Insert Into tb_user(username,password,firstname,surname) Values('werasak199783', '4214251', 'วี2', 'สัก3')"
"Update tb_user Set password='4214251,'firstname='วี12,surname='สัก2 Where username='werasak199782'"

รบกวนหน่อยนะครับ เพิ่งจะเคยมาจับvb.net



Tag : .NET, Ms Access, VB.NET







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-11-21 11:05:19 By : tee View : 1080 Reply : 3
 

 

No. 1



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



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


"Insert Into tb_user(username,password,firstname,surname) Values('werasak199783', '4214251', 'วี2', 'สัก3')"
"Update tb_user Set password='4214251,'firstname='วี12,surname='สัก2 Where username='werasak199782'"

รองแก้ให้เป็นแบบนี้ครับ

"Insert Into tb_user (username,password,firstname,surname) Values ('werasak199783', '4214251', 'วี2', 'สัก3')"
"Update tb_user Set password='4214251','firstname='วี12',surname='สัก2' Where username='werasak199782'"

ถ้ายัง error อีกเอา error ที่ได้มา post ด้วยครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-11-21 11:35:21 By : Nameless
 


 

No. 2

Guest


ลองแก้แล้วครับ

"Insert Into tb_user (username,password,firstname,surname) Values ('werasak199783', '4214251', 'วี1', 'สัก2')"
Syntax error in INSERT INTO statement.

"Update tb_user Set password='4214251',firstname='วี1',surname='สัก2' Where username='werasak199782'"
Syntax error in UPDATE statement.

ติดเหมือนเดิมเลยครับ cmd.ExecuteNonQuery()
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-11-21 11:46:53 By : tee
 

 

No. 3

Guest


แก้ได้แล้วครับ password เป็นคำเฉพาะ ต้องใส่[ ]ครอบ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-11-21 12:37:16 By : tee
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : Syntax error statement. vb.net กับ access ครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 อัตราราคา คลิกที่นี่