fill dataset with a param
C#
1
Posts
1
Posters
0
Views
1
Watching
-
how do i fill my dataset with a parameter. i use a access database. I use the following select command: WHERE T075_BORGTOCHTNUMMER_1 LIKE ? and this code i use to fill my dataset:
this.dBANBM_T075_BORGTOCHTTableAdapter.FillBy1(this.testdb1DataSet.DBANBM_T075_BORGTOCHT, textBox1.Text.ToString);
The value that's in my textbox on the form is called VAL. this VAL i put in a string. the error he returns is: No overload for method 'FillBy1' takes '1' arguments I really have no idee to do this.