i've this string example value: Sun, 09 May 2010 11:16:35 +0200
I've to insert it into MySql Date/Time field.
How can i convert it into .NET format (or Mysql format), so i can make my INSERT INTO mydate='2010-05-09 11:16:35' ?
Thank you !
|
feedback
|
|
First you need to use Don't be tempted to do something like:
It's much better to build a parameterized query instead, not just in this case. It also makes sure that if you're trying to insert/update text, you're able to handle quotes correctly (instead of risking a sql injection possibility)
| ||||
|
feedback
|
|
The MSDN documentation on the | |||
|
feedback
|
Then you could do whatever you want like get it in seconds, or whatever. | ||||
|
feedback
|
|
DateTime.Parse() is quite the easiest that comes in my mind in fact. | |||
|
feedback
|