You have the following lines wrong:
Code:
Public queryString As String = "select * from Info where FirstName ="
'123' ;"
You've broken a string literal with an extra quote.
Code:
TextBox1.DataBindings.Add("text" "firstName")
This line won't compile, there are two string values separated by a space. You are missing a comma.