Hey,
You can set the stored procedure parameters for the data adapter, as such:
objadapter.selectcommand.parameters.add("@param", SQLDbType.Int, 10).Value = <value or variable>
You can use parameters, although through a typed data adapter, I don't know how. You may have to edit it manually.
Brian
|