Tagged Questions

5
votes
2answers
513 views

SqlParameter with default value set to 0 doesn't work as expected

I was doing something like this: SqlParameter param = new SqlParameter("@Param", 0) { SqlDbType = SqlDbType.Int }; private void TestParam(SqlParameter param) { string test = ...
4
votes
3answers
297 views

Why is the decimal SqlParameter getting mangled?

I'm sending a decimal value to a sproc in the following way: SqlParameter meh = new SqlParameter("Foo", SqlDbType.Decimal); meh.Value = "0.00001"; meh.Precision = ((System.Byte)(12)); meh.Scale = ...
4
votes
1answer
443 views

How does SqlCommand (.NET) sanitize parameters?

Using SqlParameters is a recommended method to prevent SQL Injection in your database queries. Where can I find the code/function that internally sanitizes these parameters? I'd like to re-use this ...
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
2answers
53 views

Updating the database using parameters in .net

Which one of these two ways would be more recommended to update a database with a given query string: Option 1: Dim query As String = "INSERT INTO employee VALUES (@Name, @Age)" Dim command As New ...
0
votes
2answers
59 views

Is there an overload to add sqlparameters with name, type, value

When adding parameters to a SQLCommand, is there an overload that includes 'parameter name', 'type and 'value' otherwise i end up writing something like: using cmd as new SQLCommand("SELECT x FROM y ...