Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Where am i going wrong
everything looks fine


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


con.Open()
Str = "insert into PassengerDetails(BusID,PName,RouteName,Age,Sex,Date,Time)values('" + Label7.Text + "','" + TextBox2.Text + "','" + Label8.Text + "','" + TextBox1.Text + "','" + ComboBox2.SelectedValue+ "','" + Label12.Text + "','" + Label14.Text + "')"

cmdInsert = New OleDbCommand(Str, con)
cmdInsert.ExecuteNonQuery()'Getting->>>>Syntax error in INSERT INTO STATEMENT



MsgBox("Ticket Booked")


con.Close()
Me.Hide()
TicketBooking.Show()


End Sub

Private Sub PassengerDetails_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Label7.Text = TicketBooking.BusId
Label8.Text = TicketBooking.routename
Label11.Text = TicketBooking.cost
Label12.Text = TicketBooking.datee
Label14.Text = TicketBooking.timee
Label16.Text = TicketBooking.seat

End Sub
End Class
Posted
Updated 18-Apr-13 12:24pm
v2

1 solution

the sex variable is set incorrectly... it makes a error, this happen to me before...
try to define it :
VB
sex = ComboBox2.Text
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900