Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
Question[Message Deleted] Pin
santhosh-padamatinti28-Dec-09 2:14
santhosh-padamatinti28-Dec-09 2:14 
AnswerRe: please answer Pin
Dave Kreskowiak28-Dec-09 3:56
mveDave Kreskowiak28-Dec-09 3:56 
Questioninsert datetime to database Pin
Erdinc2728-Dec-09 1:48
Erdinc2728-Dec-09 1:48 
AnswerRe: insert datetime to database Pin
OriginalGriff28-Dec-09 2:14
mveOriginalGriff28-Dec-09 2:14 
GeneralRe: insert datetime to database Pin
Erdinc2728-Dec-09 2:53
Erdinc2728-Dec-09 2:53 
GeneralRe: insert datetime to database Pin
Blue_Boy28-Dec-09 3:12
Blue_Boy28-Dec-09 3:12 
GeneralRe: insert datetime to database Pin
Luc Pattyn28-Dec-09 3:26
sitebuilderLuc Pattyn28-Dec-09 3:26 
GeneralRe: insert datetime to database Pin
OriginalGriff28-Dec-09 4:13
mveOriginalGriff28-Dec-09 4:13 
Glad it works - just to add the the other replies, when you read it from the database, keep it as a DateTime:
MySqlCommand cmd;
cmd = new MySqlCommand("SELECT date FROM myTable" +
                       " WHERE userId=@ID");
cmd.Parameters.AddWithValue("@ID", userId);
DataTable dt = Utilities.GetData(cmd);
if ((dt.Rows != null) && (dt.Rows.Count > 0))
    {
    DataRow dr = dt.Rows[0];
    DateTime lastGoodLogin = (DateTime)dr["date"];
    ...
    }
Then just format it as you wish when you need to present it to the user, either in a report on on-screen. DateTime (both DB and .NET) are an internal format - similar to "milliseconds since Jan 1st 2009" but with an internal date you (and I) don't need to know.

All those who believe in psycho kinesis, raise my hand.

Questionfetch distinct record from the custom data type in ado.net entity framework Pin
Pankaj Saha27-Dec-09 22:29
Pankaj Saha27-Dec-09 22:29 
Questionhow do i differentiate between the two tables Pin
@nisha 2n27-Dec-09 22:24
@nisha 2n27-Dec-09 22:24 
AnswerRe: how do i differentiate between the two tables Pin
ProtoBytes28-Dec-09 10:52
ProtoBytes28-Dec-09 10:52 
GeneralRe: how do i differentiate between the two tables Pin
@nisha 2n28-Dec-09 21:24
@nisha 2n28-Dec-09 21:24 
QuestionHow to extract image content from a tif/jpeg/bmp images Pin
RameshwerE27-Dec-09 22:15
RameshwerE27-Dec-09 22:15 
AnswerRe: How to extract image content from a tif/jpeg/bmp images Pin
0x3c027-Dec-09 22:22
0x3c027-Dec-09 22:22 
QuestionWhy Dns.Resolve Method in C# is obsolete ? Workaround? Pin
ksaw12327-Dec-09 21:23
ksaw12327-Dec-09 21:23 
AnswerRe: Why Dns.Resolve Method in C# is obsolete ? Workaround? Pin
Mirko198027-Dec-09 21:52
Mirko198027-Dec-09 21:52 
GeneralRe: Why Dns.Resolve Method in C# is obsolete ? Workaround? Pin
ksaw12328-Dec-09 0:33
ksaw12328-Dec-09 0:33 
GeneralRe: Why Dns.Resolve Method in C# is obsolete ? Workaround? Pin
OriginalGriff28-Dec-09 2:23
mveOriginalGriff28-Dec-09 2:23 
QuestionHow to implement multicoulumn combobox in datagridviewcombobox? Pin
arj_agt27-Dec-09 19:02
arj_agt27-Dec-09 19:02 
AnswerRe: How to implement multicoulumn combobox in datagridviewcombobox? Pin
Ben Fair28-Dec-09 2:39
Ben Fair28-Dec-09 2:39 
Questionhow to make web based multipoint sdk application Pin
krunal2527-Dec-09 18:59
krunal2527-Dec-09 18:59 
AnswerRe: how to make web based multipoint sdk application Pin
nagendrathecoder27-Dec-09 19:58
nagendrathecoder27-Dec-09 19:58 
QuestionHow to check Internet Connection on different gateway Pin
Mayur27-Dec-09 18:42
professionalMayur27-Dec-09 18:42 
AnswerRe: How to check Internet Connection on different gateway Pin
Dimitri Witkowski28-Dec-09 4:51
Dimitri Witkowski28-Dec-09 4:51 
QuestionFractal Index Pin
self similar idiot27-Dec-09 11:32
self similar idiot27-Dec-09 11:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.