Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
591 views

SQL Date Compare by only using Date not Time

This was originally going to be a question about how to implement this because I was stuck at a certain part but I am now curious as to why this was happening in the first place. I needed to compare ...
4
votes
0answers
10k views

Comparing dates

How do you compare the current date with another date? E.g, Date1 is 1-10-2008, Date2 is 15-06-2009. I want to know if Date1 is a future date or a past date.
3
votes
9answers
11k views

How to compare two dates in Objective-C

I have two dates: 2009-05-11 and the current date. I want to check whether the given date is the current date or not. How is this possible.
2
votes
2answers
769 views

Compare javascript dates

I'm comparing dates with something like this: var dt = new Date(); dt.setDate("17"); dt.setMonth(06); dt.setYear("2009"); var date = new Date(); console.log("dt(%s) == date(%s) == (%s)", dt, ...
1
vote
2answers
92 views

How to compare dates in Python?

I'm a Python beginner. I need to see if a date has more than X days. How can I do this in Python? I have tested something like: if datetime.date(2010, 1, 12) > datetime.timedelta(3): I got the ...
1
vote
3answers
132 views

How to get date part (dispose of time part) from java.util.Date?

I want to compare the date part of two java.util.Date objects. How do I could achieve this. I am not looking to comparing the date, month and year separately. Thanks in advance!
1
vote
2answers
399 views

Comparing two dates in LINQ to SQL

I have a database with table named meeting. Meeting date is stored in the following form i.e. for May 2nd 2011 its stored as 5/2/2011. My requirement is to get the meetings between say 4/25/2011 till ...
1
vote
2answers
3k views

Comparing dates in jquery

I am having the following codes and it though im having 01-Jan-2009 for DateTo and 03-Jan-2009 for DateFrom its reading the values as NAN. Am I missing anything? I`m referencing var DateToValue = ...
1
vote
2answers
4k views

timeIntervalSinceDate problem

last resort this as I cannot for the life of me work it out! I am setting a date when my app is closed (using applicationWillTerminate) in user defaults NSUserDefaults *defaults = [NSUserDefaults ...
0
votes
3answers
54 views

Creating a Time Based Reminder App in iPhone

I am working on time based reminder App. in which the user enter his reminder and time for the reminder. The problem is that how to continuously comparing the current time with the user defined time. ...
0
votes
2answers
124 views

Compare two dates in vb.net whether they are equal or not

I have a Date variable startdt and a String variable hdnsdate. Suppose if startdt has the value in the form 3/1/2012 and hdnsdate has the value in the form 03/01/2012. Than how can i compare that ...
0
votes
2answers
46 views

How can I force TSQL to accept two dates EQUAL if there is only an n miliseconds difference?

I have two tables, table1 and table2. And I join them by comparing a couple of columns and one of them is a Date column. select * from table1 t1 INNER JOIN table2 t2 ON t1.HaloDate = t2.HaloDate ...
0
votes
3answers
201 views

Compare two dates in a GridView in ASP.NET

I have a GridView with two Date columns which are EditTemplates. How do I compare the 2 dates?
0
votes
1answer
88 views

compare date in sql statement

I am making an alert tool using web sql. I want to selects all events that occur in a specific day. when I insert the event I insert the date as a date object with this format "2011-10-14" , What ...
0
votes
1answer
60 views

On a Day Like Today program

I have made a program that finds the current date and then do a search in a php array and shows what happens On a Day Like Today. The only problem is that the program can't read the months 10-12 ...
0
votes
2answers
85 views

Does the java date.before function take into account the timezone?

I have the timezone set on the server to BST (British Daylight Savings Time), and the date being passed into the function was calculated in UTC. On the Java Oracle site, it simply refers to comparing ...
0
votes
2answers
160 views

sql date comparison

I was given a query similar to this select * from stuff where stuff.id = 1 and start_Dt < = todays_date and End_Dt > = todays_date I asked the person who gave it to me why the date ...
0
votes
2answers
89 views

Date validations

I have two text fields. In these text fields, I am getting dates from a picker in this format: "mm-dd-yyyy". What I want to do is validate the dates from one text field to the other, so that both text ...
0
votes
1answer
170 views

Date Best Practice

I have the following problem. I have a quartz job that runs every 5 minutes and makes a web service call retrieving a large object. The purpose of this application is that it will loop through a List ...
0
votes
2answers
186 views

Most reliable way of comparing datetimes?

I primarly use Delphi in my workplace and during some thorough unit tests which involved comparing date times I discovered that a direct comparison using the equals operator was not reliable enough ...
0
votes
2answers
960 views

PostgreSql + Date Format Convert YYYY-MM-DD to Day, Date Month Year

Suppose I am storing this format in my postgre database table. Now I have to compare this date with one of the texbox value contain date in different format. Database Date Format :: YYYY-MM-DD For ...
0
votes
4answers
253 views

sql query to compare the dates in the existing table to the selected date?

i need to compare the dates in a existing table with the selected date for equality. I am developing an asp.net application and i am tying to insert a new record in the already existing table and i am ...
0
votes
3answers
225 views

How to optimize this query using better date comparsion in SQL?

I have problem with this query, complexity of this query is not good, i use this query from long time and now this database have many rows to get selecting by this method. All index'es is added ...
0
votes
2answers
50 views

how to compare server time

work on Sql server 2000. i want to get the current server date and time then want to compare it with my table column EntryDate .How to? Declare @id datetime Select @id = DATEPART(hour,GETDATE()) ...
0
votes
4answers
66 views

php mail() statments

Hello i am trying to get all the users infomation from the database and check the timestamp (fourteendays) and check it with the time now i got the time bit working but i can''t get it to send to all ...
0
votes
2answers
214 views

Need help with a MySQL/PHP query involving date ranges

Essentially I need to retrieve some account information from the dbase table where they have a client of the client that has been passed via GET, and the account placement date (dateplaced) is between ...