DateTime objects in many programming languages describe an instant in time, expressed as a date and time of day.
0
votes
2answers
29 views
Convert Date and Time strings to DateTime
I'm trying to convert Date and Time to DateTime format using PHP:
$matches_date = null;
preg_match('/\[(.*[^]])\]/', $line_text, $matches_date);
print "DATE: ".$matches_date[1]."<br>";
...
1
vote
2answers
64 views
SQL Server Conversion failed when converting datetime from character string
I have this query to fill in a date in a table that's giving me this error message:
Conversion failed when converting datetime from character string.
Below are my table declaration and query. ...
1
vote
1answer
38 views
Finding the second and fourth Tuesday of the month with Javascript
My association has meetings on the second and fourth Tuesday of each month and I'd really like a Javascript code so I don't have to update our site every two weeks and the date of the next meeting can ...
0
votes
2answers
34 views
asp.net update textbox via JS based on other textbox value
I have two textboxes on my asp.net page.
One is for today's date and one is for the expiry date which is one year from now.
So if the first textbox contains 23/04/2013
I want the second textbox to ...
0
votes
4answers
58 views
How to check if it is zero datetime in c#
How to check if it is zero datetime in c#? What I mean zero datetime is: 01.01.0001 00:00:00
0
votes
1answer
47 views
Android Adding DATE (now) to SQLite database
Currently my SQLite database is working great, I have read up on various methods such as this one to achieve this, though currently I am having issues with setting up the Date constructor and also how ...
1
vote
2answers
63 views
The string was not recognized as a valid DateTime, There is an unknown word starting at index 25
I am grabbing a pubDate node from a xml file,
Item.PubDate have the date that I grabbed.
NewsItem.Date is my datetime column in my database table column.
But I cant seem to parse it to datetime.
I ...
0
votes
0answers
15 views
CAML query - How to compare Lookup Value of DateTime
I need a CAML query to compare the Lookup Value and not ID. My Lookup Value is of DateTime. The startTime and endTime are both DateTime.
Something is wrong with the code below.
I searched through ...
0
votes
1answer
58 views
Date Operations in Javascript
I currently have two variables:
appointment_date and appointment_time which are in the format dd/mm/yyyy and (h)h:mm respectively.
The time is 12 hour format but for times before 12PM there is no ...
0
votes
3answers
48 views
C# SqlDbType.Datetime getting empty rows
I develop a inventory management application. It have been in use almost for 1 year. But I decided to test some report, so I make a back up of the Database that runs in SQL server 2008 express. When I ...
0
votes
3answers
49 views
Operator '+' cannot be applied to operands of type 'System.DayOfWeek' and 'System.DayOfWeek' in C#
Today using reflector i found this line:
return date.AddDays((double) ((((dayOfWeek < date.DayOfWeek) ? (DayOfWeek.Saturday | DayOfWeek.Monday) : DayOfWeek.Sunday) + dayOfWeek) - ...
0
votes
4answers
115 views
What is the best way to calculate if today is an upcoming anniversary (based on some start date)?
I have some code that get a date:
DateTime startDate = new DateTime(2010, 1,4);
and I want to create a function
string message = CalculateUpcomingAnniversary(startDate);
and I am trying to ...
-2
votes
1answer
43 views
Storing day of week with time in database
Storing day of week and time only in database saves 0000-00-00 00:00:00,
expected data should be like Monday 8:30 AM,
Stored procedure
CREATE DEFINER=`admin`@`192.168.21.%` PROCEDURE `AddDay`(d ...
0
votes
0answers
80 views
DataTable column to array with linq throws a System.InvalidCastException [closed]
Im using linq to get distinct values fron a datatable column (DateTime), something like this:
DateTime[] axisX = (from row in dtb.AsEnumerable()
select ...
0
votes
1answer
30 views
date filtering in dynamic SQL
set @vSqlFilters = '(ABRA.START_DATE !> ' + cast(@dEndDate as varchar(26)) + ' or ABRA.END_DATE !< ' + cast(@dStartDate as varchar(26)) + ')';
I want my parameters @dStartDate and @dEndDate to ...
0
votes
1answer
21 views
Date format bug when date is in Portuguese?
I'm seeing some odd behavior in our application coming from a user working in what I believe to be Portuguese.
I realized that Rails seems to be mis-interpreting the dates she is submitting. Here's ...
1
vote
2answers
95 views
Removing exactly one month from a date
It seems that you can't use strotime if you need reliable and accurate date manipulation. For example, if the month has 31 days, then it appears that strtotime simply minuses 30 days, not a whole ...
0
votes
0answers
42 views
Python Get Relative Time [duplicate]
i want to get a relative time of a post. For example let it be there is a post like this:
post:{
'created_on': '2013-05-08 12:50:04',
'content':'hello'
}
I want to write a method and get ...
4
votes
1answer
71 views
rounding times to the nearest hour in R [duplicate]
I have data in the format
time:
16:53,
10:57,
11:58
etc
I would like to create a new column where each of these times is rounded to the nearest hour. I cannot seem to get the POSIX command to work ...
0
votes
2answers
75 views
Using bootstrap-datetime picker with AngularJS
My project needs datetime so I found (Meridian Format in) bootstrap-datetimepicker which seems pretty good, but I am not able to use it
all I did in my code is
<div class="control-group">
...
2
votes
1answer
76 views
DateTime Unspecified Kind
On msdn it is defined for Unspecified Kind as:
So if Kind is unspecified DateTime is UTC, but on the same page (given example):
class Sample
{
public static void Main()
{
...
0
votes
3answers
36 views
DropDownListFor not selecting selected
I have a dropdownlistfor which lists selectable dates. I want to pre-select a certain date but even though it's marked as "Selected" it doesn't show as the selected when looking at the dropdownlist.
...
0
votes
1answer
17 views
Application Time span control Android
I want to develop an app which user cant open after given days time or will pop up activity that time span is over .
I want to design an app. which user can use for 15 days after that user cant use ...
2
votes
3answers
134 views
+50
Age (+leap year) calculation in Javascript?
I've read this question but there were many comments which some said it was accurate and some said it wasn't accurate.
Anyway I have this code which calc person's age in Javascript :
function ...
0
votes
1answer
39 views
How to get file generation datetime and updated datetime in C#
I am trying to generate files and perform write operation in a scheduled process. I need to find out the time taken to generate the files (after write operation is performed). I am little confused ...
1
vote
1answer
27 views
JSpinner.DateEditor 5 minute jump
I have a timepicker looking like this:
JSpinner timePicker = new JSpinner(new SpinnerDateModel());
JSpinner.DateEditor timeEditor = new JSpinner.DateEditor(timePicker, "HH:mm");
...
0
votes
1answer
42 views
Elapsed time in Matlab in milliseconds with different dates
I want to compute the elapsed time (in milliseconds) of data like this:
START: 2013-05-04 23:13:06.188
ENDED: 2013-05-05 1:22:41.617
I can't use etime() because I need the elapsed time in ...
0
votes
2answers
31 views
How to hide plus button in data and time picker in Android
I want to give permission to user, you have not select future time and date.
I want to make that is unable to pick data from the current time.How to how to hide plus sign if we add more time from the ...
0
votes
1answer
30 views
save time with the desired date
below is my html code
<MKB:TimeSelector ID="TimeFrom" runat="server" DisplaySeconds="False">
</MKB:TimeSelector>
and a text box which is ...
1
vote
2answers
53 views
How to set a count using timer in asp.net
i have a asp.net page in that one i have a label in that there is a number(60) which have to decrease for each second. and the number reaches 0 means it have to popout a message.
i used timer but i ...
0
votes
2answers
33 views
Calculate time different in minute and second
i try to compare 2 datetime and get the different in minutes and second and after i refer this topic How to get time difference in minutes in PHP yes that code can show the different but in minute:
...
-1
votes
0answers
36 views
Changing date/time to ago.. debug
This code was working a few days ago. All of a sudden my site started freezing and I dwindled the problem down to my code that converts date time to ago format. I can't figure out what's wrong with it ...
0
votes
2answers
50 views
knockout - how to bind date only
I have an array, one key is createDate. In a foreach looping of the array, I pull the createDate value via a knockout text binding.
<span data-bind="text: createDate"></span>
The value ...
-1
votes
2answers
52 views
jquery date and time calculation firefox NaN
I am trying to calculate days between certain date, I am using date and time. On chrome works fine, but on Firefox gives me "NaN", haven't test it on Ie, but I think it will be same result.
...
0
votes
1answer
28 views
SQL Statement to get grouped data from every 30 days, grouped by date
I have a table with the following two columns
ExportTime | Manufacturer
2009-11-16 21:30:10.000 | IBM
2009-11-16 21:30:05.000 | VMWare
2009-11-16 21:30:12.000 | HP
2009-11-17 ...
0
votes
0answers
14 views
How to synchronize separate free-running hardware timestamp components?
I am working with an API from a chinese video compression board that is somewhat 'unfriendly'. In each video frame buffer that comes back from the driver, there is a video timestamp. However, the ...
0
votes
0answers
40 views
Unable to fetch result based on date range query
I want to fetch the record from HSQL database and query is as below:
ao.find(IssuesAD.class, Query.select().where("user=? AND (START_TIME = ? OR END_TIME = ? OR (convert(START_TIME,DATE) < ...
0
votes
1answer
31 views
Convert a “hh:mm”-string to HTML5 microformat duration
I'm trying to convert a string of the format "HH:MM" (for example, 01:25 - 1 hour and 25 minutes), for usage as microdata in a recipe page.
I can create a DateTime object from the string like so:
...
0
votes
1answer
56 views
Expecting difference of dates in number of months and days?
I have to find the difference between two dates in months and days.
I tried Google, but I only found the difference in months and days. But I'm expecting difference in months and days.
Eg: 01 April ...
2
votes
1answer
23 views
executing current python file in vim creates new file if current time is parsed
I am executing python files from vim as described here:
How to execute file I'm editing in Vi(m)
I observe the same behavior on Windows & Linux.
For testing, I moved my .vim so as to avoid ...
-2
votes
3answers
40 views
converting datetime in varchar and using it in where clause in Sql server 2005
This is a sql query that i am working on. It is dumping the filtered result in a temp table
it is giving an error stating "Incorrect syntax near ','."
Query.
DECLARE @year VARCHAR(50)
SET @year = ...
0
votes
1answer
51 views
Time tuple to a datetime
I am trying to convert a timestamp tuple from dpkt to a datetime instance.
The timestamp looks like (seconds, microseconds). This is what I am currently doing, but it seems overkill:
from datetime ...
0
votes
1answer
40 views
Bind the DateTimePicker.Text to the DateTimePicker.SelectedDate
I would like to bind the DateTimePicker.Text to the DateTimePicker.SelectedDate in order to always use the .SelectedDate.
I succed to do the reverse ( binding DateTimePicker.SelectedDate to ...
2
votes
1answer
37 views
DayLight Saving Time issue of DateTime from JavaScriptSerializer.Serialize to ToLocalTime
Previously I was facing this issue and solved as described in the post.
Currently after DayLight Saving implementation I observed the issue that if I am selecting
DateTime startDate=new ...
1
vote
3answers
63 views
Odd DateTime.Now() behaviour
I'm having a weird issue where DateTime.Now is returning the incorrect time when I'm calling it for the purposes of timestamping a logfile. The code in question is as follows:
string logDate = ...
2
votes
1answer
37 views
PHP/Wordpress: include hours & minutes in ascending list
I'm modifying a Wordpress plugin that another dev wrote a couple years back. In the PHP code, he's created a $now variable to get the current time. Then further down, we're displaying a list of ...
0
votes
0answers
14 views
Accessing a datetime field slows down exponentially with large batches of ActiveRecord models
I made a simple test case at https://github.com/ImLittleJon/datetime_bug
The symptom is that when you iterate over a large (e.g. 1000) batch of ActiveRecord model objects and access a datetime field ...
1
vote
1answer
40 views
RoR if statement by datetime
I have a movies database where there is a column called filmstatus, and it has two choices, Upcoming and Released.
To avoid having to change the status every time a movie is released, how would I ...
2
votes
1answer
79 views
Timezone conversion from GMT to local
I have the following information:
string shippedTime = "10:53 AM";
string shippedDate = "12/12/2012";
string shippedTimeZone = "(GMT-05:00) Eastern Time (US & Canada)";
string receivedTime = ...
0
votes
2answers
32 views
Given a date in integer format, how to convert it into a Date object?
For an application, I nee to extract out a number of fields from a file upload. One of these fields is a decimal date with no separators and as yyyyMMDD. For example, today's date would be ...







