The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
5answers
229 views

Specific day of current month and year

I have problem with return of specific day of current month and year. I need for example 15th day. Until now I used in FB/IB existing function: IB_EncodeDate(EXTRACT(YEAR FROM ...
2
votes
1answer
58 views

Spread values evenly between two times

I have the following code. I need to spread values out evenly between two times: now + 20 minutes to 15:30. The following code is a part of a loop that I did not include for the sake of brevity. ...
0
votes
2answers
36 views

Php microseconds in relative templates

I have a date time object which I would like to modify the microseconds. I'm using the following code. $datesArray[$alreadyDoneIndices+$countIndices]->modify("+$microsecondIncrementAmount ...
17
votes
1answer
2k views

Why Does the Leap Second Cause Problems?

So at this moment (but most likely not for long) Reddit, Meetup, Fark, LinkedIn, Yelp, 4Chan are all down. Netflix apparently was out for a while too. According to Reddit's tweet, they are having ...
2
votes
4answers
151 views

Date format for conversion in c# [closed]

is there anyone there who can tell me what type of a date format is this '1110620'? And how can I convert this to a 'yyyy-MM-dd' format. Any help is highly appreciated. Thanks!
2
votes
5answers
2k views

DateTime AddMinutes method not working

The purpose of my method is to get the currentTime, and set it back for 20 minutes. For what I can see, my method is correct, but the output shows something else. This i my code: DateTime ...
7
votes
4answers
24k views

How to get Time from DateTime format in SQL?

I want to get only Time from DateTime column using SQL query using SQL Server 2005 and 2008 Default output: AttDate == 2011-02-09 13:09:00 2011-02-09 14:10:00 I'd like ...
-5
votes
6answers
4k views

How to get today's date in mm/dd/yyyy format into a datetime variable in c#

I want today's date in mm/dd/yyyy format from a DateTime variable. How to get it? I need to check this with some date variable so it must be also in date variable format?plz help Ex: i need to get ...
1
vote
1answer
364 views

How to delete data from selected Date to current Date using DateTimePicker

My problem is to delete data from given date to current date, My code works fine for deleting the data by the date given in the DateTimePicker. i want to delete the data from given date in ...
4
votes
6answers
6k views

Convert DateTime to long and also the other way around

I want to store dates as numbers in a table. I know how to do that but I don't know how to go back. How can I cast a long variable to ToDateTime. DateTime now = DateTime.Now; long t = ...
5
votes
6answers
281 views

adding quotes around date and time, c#

I am currently using the following line: w.Write(DateTime.Now.ToString("MM/dd/yyyy,HH:mm:ss")); and it gives and output like: 05/23/2011,14:24:54 What I need is quotations around the date and ...
0
votes
5answers
110 views

Is there a better way to write the following method?

Is there a better, more elegant solution to the following method? Expected input format: 8 h 13 m Expected output format: 8.13 My code: private string FormatHours(string value) { ...
3
votes
3answers
14k views

how to convert date from yyyyMMdd format to mm-dd-yyyy fomrat

I want to convert a string which contains date in yyyyMMdd formate to mm-dd-yyyy DateTime format how do i get it. thanks in advance.
23
votes
4answers
25k views

MySQL's now() +1 day

I'm using now() in MySQL query. INSERT INTO table SET data = '$data', date = now() But I want to add 1 day to this date (so that date should contain tomorrow). Is it possible?
3
votes
3answers
4k views

datetime issue with 01/01/1900

i have a datetime column in sql server and its optional field and if the user decided not to enter then i want to insert the value as NULL in the table and i define something like this: @deadlineDate ...
4
votes
5answers
5k views

Work out min and hours

I have a minute value and i want to have to 2 string values one with how many hours and the other with the minutes, e.g.: Value - 121 minutes string hours = 2 string minutes = 1 Value - 58 minutes ...