when we want to pass sth to database like int we use(%d) like below
...string.format("select * from Table where code=%d",100)...
what should i use instead of %d when we want to pass dateTime ?
|
when we want to pass sth to database like
what should i use instead of |
||||
|
dont use string.format() for db parameter substitution, you end up in SQL injection. SqlCommand has Parameters property , you can add the parameters into the collection use parameterized query like this:
more efficient if you use the Using block with your code. like this
|
||||
|
|
|
In addition to @Ravi's answer. You should avoid concatenating your SQL queries like that, because it will allow for SQL injection. In your case, I would consider using an ORM (Entity Framework, NHibernate, Dapper), but if you just want to use the
Here's an example from wikipedia that shows the problem with concatenating the sql statement:
What happens if The final SQL statement will then look like this:
Which is incorrect and will thrown an error. By exposing this, you can do Very harmfull things to your data! |
||||
|
|
string.formatin .NET? Especially with C format strings? – Јοеу Jul 4 '12 at 10:37