Retrieve data from Db set by combobox and display to textbox

501 Views Asked by At

This is my code

s2="SELECT Notes From A WHERE ATotalNo =" + ComboBox1.SelectedItem +"" 
Dim cmd As OleDbCommand=New OleDbCommand(s2,myConnection1) 
cmd.CommandText=s2 TextBox1.Text=Convert.ToInt32(cmd.ExecuteScalar()).ToString()

And I am getting following error:-

Erorr: Data type mismatch in criteria expression

1

There are 1 best solutions below

7
On

Apply ToString() on SelectedItem and why to convert result set to integer, if you only want to show it in textbox?

Try this,

s2 = "SELECT Notes From A WHERE ATotalNo = "& ComboBox1.SelectedItem.ToString() &"" 

Dim cmd As OleDbCommand = New OleDbCommand(s2, myConnection1) 
cmd.CommandText = s2 
TextBox1.Text = "" & cmd.ExecuteScalar()

Here the resultset is concatenated with a empty string to make it as whole string.

If column ATotalNo is of type VARCHAR then decorate selectedItem value with single quotes. Like,

s2 = "SELECT Notes From A WHERE ATotalNo = '"& ComboBox1.SelectedItem.ToString() &"'" 

Hope it helps thanks.