J
Jim
I am having problems with a query string.
I can fill a TableAdapter by:
this.TableAdapter1.FillByQS(param1, param2, param3);
but if I try
string QS = Param1 + "," + Param2 + "," + Param3;
this.TableAdapter1.FillByQS(QS);
I get an error telling me that I need three arguments for the FillByQS to
work.
How do I accomplish substituting a string for three arguments.
Thanks in advance for your help,
Jim
I can fill a TableAdapter by:
this.TableAdapter1.FillByQS(param1, param2, param3);
but if I try
string QS = Param1 + "," + Param2 + "," + Param3;
this.TableAdapter1.FillByQS(QS);
I get an error telling me that I need three arguments for the FillByQS to
work.
How do I accomplish substituting a string for three arguments.
Thanks in advance for your help,
Jim