I need to add the current date time in a bigint field in a database... and then display from that only the date in format: october 1, 2009.

I am currently thinking of storing the value in string variable and then converting it to int...
String s = DateTime.Now.ToString();

i dont know what to do next..
please help