active questions tagged datetime - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T14:22:55Zhttp://stackoverflow.com/feeds/tag/datetimehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846446/how-to-check-if-string-is-a-valid-datetime-format-string-in-delphi1How to check if string is a valid DateTime Format string in DelphiTofig Hasanov2009-12-04T11:40:16Z2009-12-04T14:09:38Z
<p>I want user to be able to manually enter format of the datetime fields in the program. I have Tedit component. For example if user enters 'HH:nn', then this is a valid datetime format string and all datetime components should change format property to this, but if he enters 'asd', it is not. Is there a quick way to check this, without writing my own function?</p>
http://stackoverflow.com/questions/100210/python-easy-way-to-add-n-seconds-to-a-datetime-time8Python - easy way to add N seconds to a datetime.time?Paul Stephenson2008-09-19T07:19:36Z2009-12-04T13:00:23Z
<p>Given a <code>datetime.time</code> value in Python, is there a standard way to add an integer number of seconds to it, so that <code>11:34:59</code> + 3 = <code>11:35:02</code>, for example?</p>
<p>These obvious ideas don't work:</p>
<pre><code>>>> datetime.time(11, 34, 59) + 3
TypeError: unsupported operand type(s) for +: 'datetime.time' and 'int'
>>> datetime.time(11, 34, 59) + datetime.timedelta(0, 3)
TypeError: unsupported operand type(s) for +: 'datetime.time' and 'datetime.timedelta'
>>> datetime.time(11, 34, 59) + datetime.time(0, 0, 3)
TypeError: unsupported operand type(s) for +: 'datetime.time' and 'datetime.time'
</code></pre>
<p>In the end I have written functions like this:</p>
<pre><code>def add_secs_to_time(timeval, secs_to_add):
secs = timeval.hour * 3600 + timeval.minute * 60 + timeval.second
secs += secs_to_add
return datetime.time(secs // 3600, (secs % 3600) // 60, secs % 60)
</code></pre>
<p>I can't help thinking that I'm missing an easier way to do this though.</p>
<h3>Related</h3>
<ul>
<li><a href="http://stackoverflow.com/questions/656297/python-time-timedelta-equivalent">python time + timedelta equivalent</a></li>
</ul>
http://stackoverflow.com/questions/570858/linq-to-entities-for-subtracting-2-dates1LINQ to Entities for subtracting 2 datesMichael I2009-02-20T19:13:16Z2009-12-04T11:51:08Z
<p>I am trying to determine the number of days between 2 dates using LINQ with Entity Framework. It is telling me that it does not recognize Subtract on the System.TimeSpan class</p>
<p>Here is my where portion of the LINQ query.</p>
<p>where ((DateTime.Now.Subtract(vid.CreatedDate).TotalDays < maxAgeInDays))</p>
<p>Here is the error I receive in the VS.NET debugger</p>
<p>{"LINQ to Entities does not recognize the method 'System.TimeSpan Subtract(System.DateTime)' method, and this method cannot be translated into a store expression."}</p>
<p>Am I doing something wrong or is there a better way to get the number of days between 2 DateTimes in the entity framework?</p>
<p>thanks
Michael</p>
http://stackoverflow.com/questions/1843395/compare-two-datetime-only-by-date-not-time-in-sql-server-20080Compare two DATETIME only by date not time in SQL Server 2008abatishchev2009-12-03T22:22:16Z2009-12-04T09:48:59Z
<p>I have two tables (bank statement and client requests) where column <code>[date]</code> is type of <code>DATETIME2(0)</code>.</p>
<p>I have to compare two records only by theirs Date parts (day+month+year), discarding Time parts (hours+minutes+seconds).</p>
<p>How can I dot that? I tried <code>CAST</code> and <code>CONVERT</code> but it didn't helped.</p>
<p><strong>Update</strong>:</p>
<ol>
<li><p>Marc_s's answer works</p></li>
<li><p><code>DATEADD(dd, 0, DATEDIFF(dd, 0, [field1])) = DATEADD(dd, 0, DATEDIFF(dd, 0, [field2]))</code> -- this also works - it withdraws date parts from <code>DATETIME</code> and compares</p></li>
</ol>
http://stackoverflow.com/questions/1839877/how-can-i-get-files-modification-date-in-ddmmyy-format-in-perl0How can I get file's modification date in DDMMYY format in Perl?Igor Oks2009-12-03T13:29:36Z2009-12-04T09:11:54Z
<p>What's the best way to do it?</p>
<p>EDIT: Originally the question was "How to do it without the DateTime module". I removed this restriction in order to make the question more general.</p>
http://stackoverflow.com/questions/1829477/date-conditions-using-search-logic1Date conditions using Search logicSwards2009-12-01T22:46:36Z2009-12-04T08:38:03Z
<p>The Rails plugin - <a href="http://github.com/binarylogic/searchlogic" rel="nofollow">Searchlogic</a>, from binary logic - offers the ability to filter by date. I have my form set up like so...</p>
<pre><code><% form_for @search do |f| %>
<%= f.label :start %> <%= f.select :due_at_after, [[['','']],['November', '2009-11-01'.to_date],['December', '2009-12-01'.to_date]] %><br>
<%= f.label :end %> <%= f.select :due_at_before, [[['','']],['December', '2009-12-01'.to_date],['January', '2010-01-01'.to_date]] %>
<%= f.submit 'Search' %>
<% end %>
</code></pre>
<p>But, the date I'm getting back from the @search object as generated in the controller...</p>
<pre><code>@search = Task.with_member(current_user).search(params[:search])
</code></pre>
<p>is generating a date param that looks like this </p>
<pre><code>{:due_at_after=>Sat, 31 Oct 2009 20:00:00 EDT -04:00}
</code></pre>
<p>With the two formats, the form will not show the drop-down as selected. It looks as if the format in the searchlogic object uses a timezone adjusted time, too.</p>
<p>Any thoughts on how to handle this? </p>
http://stackoverflow.com/questions/1845220/how-to-find-out-the-next-year0How to find out the next year?vinothkumar2009-12-04T06:24:36Z2009-12-04T06:55:20Z
<p>Sorry for the title....In PHP I use the date('w',mydate) to get the week and then I got the week of the date.If user clik next week it increments the current week by one.</p>
<p>For example date('w',2009-12-10 05:00:00) it returns week as 50.if i click next week button iincrement as 51 and display the dates.at the end of 53 eeks also it takes as 54,55,56,etc...
But I want to display as 1st week of january 2010.How can I do?</p>
http://stackoverflow.com/questions/965618/issue-with-php-getting-an-incorrect-date-from-a-c-web-service0Issue with PHP getting an incorrect date from a C# web serviceIan2009-06-08T15:54:11Z2009-12-03T19:00:04Z
<p>Ok this has been driving me nuts now for about 12 hours. I have a C# web service running under IIS 7 and I am connecting to it via PHP on a Apache 2.2 box. Not that any of that should really matter but figured I would drop it in.</p>
<p>Now when I go directly to the web service and invoke it I get the correct datetime format but if I call it from php I do not.</p>
<h2>Example:</h2>
<p>C# WebService: 6/4/2009 9:23:25 AM</p>
<p>PHP Soap Result: 12/31/1600 4:00:00 PM</p>
<p><hr /></p>
<p>The WebService is assessing WMI::Win32_LogonSession to get the StartTime and then being converted via ManagementDateTimeConverter.ToDateTime((string)wmisearcherData["StartTime"])
and then set to a string.</p>
<p>Im at a lose anything anyone has to offer would be a great help.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1839319/calculate-working-hours-between-2-dates-in-postgresql1Calculate working hours between 2 dates in Postgresqlalbergali2009-12-03T11:22:40Z2009-12-03T15:35:54Z
<p>I am developing an algorithm with Postgres (PL/PgSQL), and I need to calculate the number of working hours between 2 dates, taking into account that weekends are not working and the rest of the days are counted only from 8am to 15pm.</p>
<p>Examples:</p>
<ul>
<li>From Dec 3rd at 14pm to Dec 4th at
9am should count 2 hours. (3rd = 1, 4th = 1)</li>
<li>From Dec 3rd at 15pm to Dec 7th at
8am should count 8 hours. (3rd = 0, 4th = 8, 5th = 0, 6th = 0, 7th = 0)</li>
</ul>
<p>It would be great to consider hour fractions as well.</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1839404/is-this-value-a-valid-year-c0Is this value a valid year C#Jamie Dixon2009-12-03T11:37:49Z2009-12-03T13:39:15Z
<p>What's the best way to check if a string is a valid year using C#?</p>
<p>I currently have a dropdown list that contains the values {'All','2009','2008'} etc, and I want to know whether the selection is one of the dates or the 'All' field.</p>
<p>Currently I'm checking for <code>bool isYearValid = (Year.ToLower() == "all") ? false : true;</code></p>
<p>How do I check whether the value is a valid year so that I don't have to have this hardcoded check for 'All'?</p>
http://stackoverflow.com/questions/700619/how-to-combine-date-from-one-field-with-time-from-another-field-ms-sql-server1How to combine date from one field with time from another field - MS SQL ServerJon Winstanley2009-03-31T08:46:19Z2009-12-03T12:20:50Z
<p>In an extract I am dealing with, I have 2 fields. One field stores the dates and another the times as shown.</p>
<p>How can I query the table to combine these two fields into 1 column of type date?</p>
<p><strong>Dates</strong></p>
<pre><code>2009-03-12 00:00:00.000
2009-03-26 00:00:00.000
2009-03-26 00:00:00.000
</code></pre>
<p><strong>Times</strong></p>
<pre><code>1899-12-30 12:30:00.000
1899-12-30 10:00:00.000
1899-12-30 10:00:00.000
</code></pre>
http://stackoverflow.com/questions/1259663/pgsql-time-diffrence0pgsql time diffrence?coderex2009-08-11T10:59:06Z2009-12-03T12:04:55Z
<p>How to write a query to find the time difference ?</p>
<p>time format is like this
<strong>2009-08-12 02:59:59</strong></p>
<p>i want to compare
this time with </p>
<p><strong>2009-08-12 02:59:10</strong></p>
<p>how to check these two </p>
<p>i want to return some row having the time difference is 30sec</p>
<p>how to write a SQL statement ??</p>
http://stackoverflow.com/questions/1838783/time-of-day-script2Time of day scriptBift2009-12-03T09:36:24Z2009-12-03T11:55:45Z
<p>Hi all,</p>
<p>I have a small script that depending on the time and day; I would like it to output different things:</p>
<pre><code><?php
$currenttime = ((date("H")+7). ":" .date("i"));
if ($currenttime >= "16:30") {
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+2, date("Y"));
$jsdate = (date("Y"). "-" .date("m"). "-" .(date("d")+1). "-16-30");
}
else{
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y"));
$jsdate = (date("Y"). "-" .date("m"). "-" .date("d"). "-16-30");
}
echo " Time left for delivery on <b><center>" .date("l \\t\h\e jS F", $tomorrow). "</b>:</center>";
?>
<center>
<script>
// deadline(date, width, height, style, background, number color, small text color);
deadline("<? echo $jsdate; ?>", "220", "37", "digital2", "#FFFFFF", "#000099", "#000000");
</script>
</center>
</code></pre>
<p>For instance on a Monday before 16:30 it would need the following:</p>
<ul>
<li>Time left for delivery on Tuesday the {date} of {month}</li>
<li>Then display how long left until 16:30 in DD HH MM SS format(Preferable to be servertime rather than users local time.)</li>
</ul>
<p>Then after 16:30 on a Monday it would need to read:</p>
<ul>
<li>Time left for delivery on Wednesday the {date} of {month}</li>
<li>Then display how long left until
16:30 in DD HH MM SS
format(Preferable to be servertime
rather than users local time.)</li>
</ul>
<p>Then from 16:30 on Thursday until Monday 16:30 it would need to read:</p>
<ul>
<li>Time left for delivery on Tuesday the {date} of {month}</li>
<li>Then display how long left until
16:30 in DD HH MM SS
format(Preferable to be servertime
rather than users local time.)</li>
</ul>
<p>I hope this all make sense and thanks for looking.</p>
<p>Ta,
B.</p>
http://stackoverflow.com/questions/1838711/calculate-time-interval-between-2-dates-on-different-rows0Calculate time interval between 2 dates on different rows.Janis Veinbergs2009-12-03T09:21:49Z2009-12-03T11:31:22Z
<p>Hello.</p>
<p>I have login and logout events and i need to calculate time between them.</p>
<p>I guess i could group each 2 rows (each two messages) and then do the calculation, but how would you do that?</p>
<p>Example XML i need to query:</p>
<pre><code><Log>
<Message>
<DateTime>2009-12-02 14:38:41</DateTime>
<Priority>Local3.Info</Priority>
<Source_Host>192.168.0.100</Source_Host>
<MessageText>Dec 2 14:38:41 root: login,ng1,192.168.0.160,janis.veinbergs</MessageText>
</Message>
<Message>
<DateTime>2009-12-02 15:28:19</DateTime>
<Priority>Local3.Info</Priority>
<Source_Host>192.168.0.100</Source_Host>
<MessageText>Dec 2 15:30:33 root: logout,ng1,,janis.veinbergs</MessageText>
</Message>
<Message>
<DateTime>2009-12-02 15:29:11</DateTime>
<Priority>Local3.Info</Priority>
<Source_Host>192.168.0.100</Source_Host>
<MessageText>Dec 2 15:31:25 root: login,ng1,192.168.0.160,janis.veinbergs</MessageText>
</Message>
<Message>
<DateTime>2009-12-02 15:58:22</DateTime>
<Priority>Local3.Info</Priority>
<Source_Host>192.168.0.100</Source_Host>
<MessageText>Dec 2 16:00:37 root: logout,ng1,,janis.veinbergs</MessageText>
</Message>
</Log>
</code></pre>
<p>Thankyou.</p>
http://stackoverflow.com/questions/348690/comparing-dates-in-lingo0Comparing dates in LingoElie2008-12-08T05:03:00Z2009-12-03T10:26:55Z
<p>How do I compare two dates in Lingo? To be specific, I want to know if today's date is after some fixed date. I know I can create the fixed date by using:</p>
<pre><code>date("20090101")
</code></pre>
<p>and I can get the current date using:</p>
<pre><code>_system.date()
</code></pre>
<p>but I can't seem to directly compare the two. Do I have to parse the _system.date() to determine if it's after my fixed date? I tried:</p>
<pre><code>if(_system.date() > date("20090101") then
--do something
end if
</code></pre>
<p>but that doesn't seem to work. Any ideas?</p>
http://stackoverflow.com/questions/1837296/datetime-binding-default-error-message-using-linq-to-sql0DateTime binding default error message using Linq to SQLGremo2009-12-03T02:37:37Z2009-12-03T08:47:05Z
<p>Hi, i'm using Linq to SQL for my model with a <strong>custom</strong> validation layer. I cannot find the way to edit or change the default message:</p>
<blockquote>
<p>The value '29/34/1980' is not valid for BirthDate.</p>
</blockquote>
<p>BirthDate is of course my textbox. Any ideas? Thanks</p>
<p><strong>EDIT</strong>: this is the simple code i'm using:</p>
<pre><code><%= Html.Label("Data di Nascita (GG/MM/AAAA)", "BirthDate")%>
<%= Html.TextBox("BirthDate", Model.BirthDate) %>
<%= Html.ValidationMessage("BirthDate", " *") %>
</code></pre>
<p>and this is the validation code, that does not override the default message:</p>
<pre><code>if (!(person.BirthDate > DateTime.MinValue)) // Diverso dal default
_validation.AddError("BirthDate", "Il campo 'Data di nascita' non è valido");
</code></pre>
http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid0Need to format dates in dynamically built WPF DataGrid.FarrEver2009-05-11T15:38:50Z2009-12-03T08:21:32Z
<p>We are binding an unknown result set to a WPF DataGrid at run time. Some of our columns are going to contain DateTime values and we need to properly format these date time fields. Without knowing which columns are going to be DateTime fields at design time, how are we able to format the columns at runtime?</p>
<p>We are using a DataTable's DefaultView to bind to the WPF DataGrid.</p>
http://stackoverflow.com/questions/1837183/displaying-date-time-in-users-timezone-on-client-side0Displaying date/time in user's timezone - on client sidefrankadelic2009-12-03T01:56:48Z2009-12-03T02:19:33Z
<p>I have a web application that displays datetime stamps on every page, for example:</p>
<blockquote>
<p>December 12, 2009 6:00 pm</p>
</blockquote>
<p>I would like to dynamically detect the user's timezone and alter the display using JavaScript.</p>
<p>So the New York user would see:</p>
<blockquote>
<p>December 12, 2009 6:00 pm</p>
</blockquote>
<p>While the California user would see:</p>
<blockquote>
<p>December 12, 2009 3:00 pm</p>
</blockquote>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1826705/references-for-implementing-calendar-functionality-in-an-embedded-system2References for implementing calendar functionality in an embedded system?Judge Maygarden2009-12-01T14:54:56Z2009-12-03T00:22:33Z
<p>I have an embedded system that currently keeps track of seconds until an event is supposed to occur using a real-time clock driven by a watch crystal. </p>
<p>Now it needs to keep track of the actual date and time. So, I need to be able to calculate the day, month, year, hour, minute and second from a start date/time and offset in seconds. </p>
<p>Could anyone point me in the right direction for taking into account leap years, daylight savings time (DST) and other complications?</p>
<p><hr></p>
<p><em>Hardware solutions are not an option as this feature is being added to an existing product. An RTC peripheral is integrated into the MCU chosen for the next generation device.</em></p>
http://stackoverflow.com/questions/1829872/read-datetime-back-from-sqlite-as-a-datetime-in-python0Read datetime back from sqlite as a datetime in PythonEvgeny2009-12-02T00:15:06Z2009-12-02T21:48:30Z
<p>I'm using the sqlite3 module in Python 2.6.4 to store a datetime in a SQLite database. Inserting it is very easy, because sqlite automatically converts the date to a string. The problem is, when reading it it comes back as a string, but I need to reconstruct the original datetime object. How do I do this?</p>
http://stackoverflow.com/questions/1828151/is-there-a-mysql-setting-to-ignore-time-portion-of-datetime-constant-when-appli0Is there a MySQL setting to ignore "time" portion of datetime constant when applied to "DATE" column?ChssPly762009-12-01T18:59:26Z2009-12-02T19:33:35Z
<blockquote>
<p>Disclaimer: this is needed for an old and ugly codebase that I'd much rather not touch.</p>
</blockquote>
<ul>
<li>There is a table in the database that has a column (among many others) of <code>DATE</code> type.</li>
<li>There is a query (auto generated by Torque criteria - don't ask) with <code>java.util.Date</code> parameter; Torque formats it as full datetime.</li>
</ul>
<p>So, the query MySQL is getting is something like:</p>
<pre><code>SELECT * FROM my_table
WHERE my_date = '20091201105320'; // 2009-12-01 10:53:20
</code></pre>
<p>The problem is that on one server which has MySQL 5.0.27-standard it works just fine - as in returns all the records from <code>my_table</code> that have <code>my_date</code> set to '2009-12-01'. On another server which has MySQL 5.0.45 it does not work. The data is there - if I manually run the query after trimming the time portion out I get correct results back.</p>
<p>The question is:</p>
<p>Is there a setting somewhere, either in MySQL configuration file or in per-session variables (connection string) or somewhere else to force MySQL to ignore the time portion during string constant to date conversion?</p>
<p>I obviously can't use <code>DATE()</code> function without changing the codebase which I'd much rather not.</p>
http://stackoverflow.com/questions/1834956/what-does-it-mean-to-return-the-client0What does it mean to return the client?Louise2009-12-02T18:43:07Z2009-12-02T18:57:33Z
<p>What does it mean to "return the client?" </p>
<p>My teacher asked in an assignment to write a method that will return the date and the client. Here is her exact wording:</p>
<p>" You should also override the ToString method, to return the date and the client. (DateTime has a reasonable ToString method defined. Use it.) I found using "\t" (the tab symbol) helpful in lining up columns. "</p>
<p>I'm not sure what she is asking when she says to return the client. I understand how to return the date. Thank you.</p>
http://stackoverflow.com/questions/1833892/converting-a-string-formatted-yyyymmddhhmmss-into-a-javascript-date-object1Converting a string formatted YYYYMMDDHHMMSS into a JavaScript Date object.John Jones2009-12-02T16:04:56Z2009-12-02T18:28:40Z
<p>Hello,</p>
<p>I have a string with a date in it formatted like so: YYYYMMDDHHMMSS. I was wondering how I would convert it into a JavaScript Date object with JavaScript.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1834481/c-datetime-binding0C# datetime bindingToto2009-12-02T17:24:46Z2009-12-02T17:27:22Z
<p>Hello,</p>
<p>I have a textbox I want to bind to DateTime property to an object :</p>
<pre><code>myTextBox.DataBindings.Add("Text",myObject,"DateTimeProperty")
myTextBox.DataBindings["Text"].FormatString = "HH:mm";
myTextBox.DataBindings["Text"].FormattingEnabled = true;
myTextBox.DataBindings["Text"].BindingComplete +=
delegate(object sender, BindingCompleteEventArgs e)
{
if (e.Exception is FormatException)
MessageBox.Show("Wrong formating, should be :" +myTextBox.DataBindings["Text"].FormatString);
};
</code></pre>
<p>This works perfectly, when I change the textbox value, the property change. Now I want the reverse (without parsing the text).</p>
<p>I want to add a button that increment by 1 minutes myObject.DateTimeProperty. The issue is I can't do</p>
<pre><code> myObject.DateTimeProperty.Minutes+=1;
</code></pre>
<p>nor</p>
<pre><code> myObject.DateTimeProperty = myObject.DateTimeProperty.AddMinutes(1);
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1828206/why-is-parsing-y-m-using-strptime-in-r-giving-an-na-result-but-y-m-d-wo0Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works?bantic2009-12-01T19:09:13Z2009-12-02T15:52:04Z
<p>I'm getting a result I don't understand in R.</p>
<p>If I use <code>strptime</code> with a year and day formatted %Y-%m (like "2009-12"), I get an NA result. But if I add a day, like "2009-12-01", and change the format string accordingly, I do get a result. Example:</p>
<pre><code>> strptime("2009-12",format="%Y-%m")
[1] NA
> strptime("2009-12-03",format="%Y-%m-%d")
[1] "2009-12-03"
</code></pre>
<p>Why is that?</p>
<p><strong>Update:</strong> The thing I'm curious about is why strptime doesn't parse a year and a month, and the reason it seems weird that it wouldn't do so is because it <strong>does</strong> parse a year only, or a year-and-a-day:</p>
<pre><code>> strptime("2009",format="%Y") # year only. Works. Uses current month and day as defaults.
[1] "2009-12-02"
> strptime("2009-03",format="%Y-%d") # year and day. Works. Uses current month as default.
[1] "2009-12-03"
> strptime("2009-03",format="%Y-%m") # year and month. Doesn't work. ?
[1] NA
</code></pre>
http://stackoverflow.com/questions/1833054/how-can-i-format-a-nullable-datetime-with-tostring1How can I format a nullable DateTime with ToString()?Edward Tanguay2009-12-02T13:57:33Z2009-12-02T14:30:32Z
<p>How can I convert the nullable DateTime <strong>dt2</strong> to a formatted string?</p>
<pre><code>DateTime dt = DateTime.Now;
Console.WriteLine(dt.ToString("yyyy-MM-dd hh:mm:ss")); //works
DateTime? dt2 = DateTime.Now;
Console.WriteLine(dt2.ToString("yyyy-MM-dd hh:mm:ss")); //gives following error:
</code></pre>
<blockquote>
<p>no overload to method ToString takes
one argument</p>
</blockquote>
http://stackoverflow.com/questions/1798824/why-does-not-initstop-terminate-directly0Why does not init:stop() terminate directly?bugbug-wk2009-11-25T18:01:06Z2009-12-02T13:20:17Z
<p>My code for display all days in this year. </p>
<p>I don't understand why <code>if NewSec =< EndSec -> init:stop() end</code> did not execute the first time in run_calendar? </p>
<p>I expect init:stop() could be executed first time but it is not. <br/>
What is wrong?</p>
<p>Code: </p>
<pre><code>-module(cal).
-export([main/0]).
main() ->
StartSec = calendar:datetime_to_gregorian_seconds({{2009,1,1},{0,0,0}}),
EndSec = calendar:datetime_to_gregorian_seconds({{2009,12,31},{0,0,0}}),
run_calendar(StartSec,EndSec).
run_calendar(CurSec, EndSec) ->
{Date,_Time} = calendar:gregorian_seconds_to_datetime(CurSec),
io:format("~p~n", [Date]),
NewSec = CurSec + 60*60*24,
if NewSec =< EndSec -> init:stop() end,
run_calendar(NewSec, EndSec).
</code></pre>
<p>Result:</p>
<pre><code>wk# erlc cal.erl
wk# erl -noshell -s cal main
{2009,1,1}
{2009,1,2}
{2009,1,3}
{2009,1,4}
{2009,1,5}
...
{2009,12,22}
{2009,12,23}
{2009,12,24}
{2009,12,25}
{2009,12,26}
{2009,12,27}
{2009,12,28}
{2009,12,29}
{2009,12,30}
{2009,12,31}
wk#
</code></pre>
http://stackoverflow.com/questions/1832079/php-next-day-6pm2PHP - next day 6pmMithun2009-12-02T10:37:45Z2009-12-02T10:42:10Z
<pre><code><?php
$start_date = "12/10/2009 11:30";
echo "<br>start_date: $start_date<br>";
$due_date1 = date("m/d/Y H:i", strtotime("+1 day".$start_date));
$due_date2 = date("m/d/Y H:i", strtotime("+2 day 6pm".$start_date));
echo "<br>due_date1: $due_date1<br>";
echo "<br>due_date2: $due_date2<br>";
?>
</code></pre>
<p>See my code , I'm trying to get two dates from a start_date.</p>
<p>First one due_date1 is the exact 24 hours form the start_date and the second one due_date2 is 6pm after the second day of start_date</p>
<p>due_date1 is working correctly</p>
<p>What is wrong with due_date2 calculation?</p>
http://stackoverflow.com/questions/1772753/linq-to-entities-format-date-in-select-query-expression0Linq-to-Entities: Format Date in select query expressionAbeP2009-11-20T19:33:29Z2009-12-02T10:08:52Z
<p>I am trying to get a formatted date string directly from a LINQ-to-Entities query expression.</p>
<pre><code>nonBusinessDays = (from ac in db.AdminCalendar
where ac.DateTimeValue >= calendarStartDate && ac.DateTimeValue <= calendarEndDate && ac.IsBusinessDay == false
select ac.MonthValue + "/" + ac.DayOfMonth + "/" + ac.FullYear).ToList();
</code></pre>
<p>But, I get the folloinw error message:
"Unable to cast the type 'System.Nullable`1' to type 'System.Object'. LINQ to Entities only supports casting Entity Data Model primitive types."</p>
<p>Is there any way to do this besides iterating through the result set?
Thanks!
Abe</p>
http://stackoverflow.com/questions/923925/get-start-and-end-days-for-a-given-week-in-php1Get Start and End Days for a Given Week in PHPZahymaka2009-05-29T00:44:15Z2009-12-02T09:47:29Z
<p>I'm trying to get the week range using Sunday as the start date, and a reference date, say <code>$date</code>, but I just can't seem to figure it out.</p>
<p>For example, if I had $date as 2009-05-01, I would get 2009-04-26 and 2009-05-02. 2009-05-10 would yield 2009-05-10 and 2009-05-16. My current code looks like this (I can't remember where I lifted it from, as I forgot to put down the url in my comments):</p>
<pre><code>function x_week_range(&$start_date, &$end_date, $date)
{
$start_date = '';
$end_date = '';
$week = date('W', strtotime($date));
$week = $week;
$start_date = $date;
$i = 0;
while(date('W', strtotime("-$i day")) >= $week) {
$start_date = date('Y-m-d', strtotime("-$i day"));
$i++;
}
list($yr, $mo, $da) = explode('-', $start_date);
$end_date = date('Y-m-d', mktime(0, 0, 0, $mo, $da + 6, $yr));
}
</code></pre>
<p>I realized all it did was add 7 days to the current date. How would you do this?</p>