Tagged Questions
1
vote
1answer
91 views
Why am I getting an error with my parameterized ADO query?
Dim txtFName As TextBox = CType(Wizard1.FindControl("txtFName"), TextBox)
Dim txtLName As TextBox = CType(Wizard1.FindControl("txtLName"), TextBox)
Dim MyDbConnection As New ...
1
vote
1answer
740 views
DbParameter IsNullable functionality?
I have not worked with parameters in ADO.Net very much. I'm writing a custom .Net data provider (modeled on SqlClient), and have to implement the IsNullable property in my parameter class, which ...
0
votes
1answer
341 views
Having multiple values assigned to a single ADO.Net SqlClient parameter
I wish to run an SQL select statement similar to this
SELECT * FROM CatalogueItems WHERE id IN (1,10,15,20);
using ADO.Net SqlClient style @name parameters. I've tried using a stored SQL strings
...
0
votes
2answers
429 views
How to pass default keyword for table valued function call in ADO.NET
So here's the deal. In our database, we wrap most of our reads (i.e. select statements) in table valued functions for purposes of security and modularity. So I've got a TVF which defines one or more ...