Tagged Questions

5
votes
3answers
501 views

How to get localised day names in Delphi?

I'm using standard Delphi constants DayMonday, etc and I want to convert them to localized strings (eg "Lundi"). Is there a simple RTL or VCL call for this?
4
votes
4answers
880 views

Math with DayOfWeek in C#

Why is it that the following code won't work: endDate.AddDays(7-endDate.DayOfWeek); While this will: endDate.AddDays(0-endDate.DayOfWeek + 7); ? (By "won't work" I mean resu …
2
votes
4answers
898 views

Equivalent of WeekDay Function of VB6 in C#

I have to convert some of my VB6 Code to C# , In my VB6 I am having code like dim I as Long I = Weekday(Now, vbFriday) I want equivalent of the same in C# Can any one Help …
1
vote
5answers
137 views

Order by day_of_week in MySQL

How can I order the mysql result by varchar column that contains day of week name? Note that MONDAY should goes first, not SUNDAY.
1
vote
4answers
341 views

Get string representation of a sql DateTime day

Hi all, Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'. Is there any built in sql function / operation i can perform on the dates above to return the string repr …
1
vote
4answers
420 views

Convert integer to a list of week days

I have an integer stored in a database (SQLAgent Frequency Interval) This integer is actually the sum of the selected days of the week that the schedule is to run The possible valu …
0
votes
2answers
33 views

sql between for DAYSOFWEEK

I have a generalized search where I'm looking up average prices for the various days of the week. The problem is I'm not sure how to ask for an odd range. 1-7 works fine, (monday …
0
votes
2answers
87 views

Need a list of week days with their number on iphone os

I'm working on a project that needs to have a list of weekdays. I could get their locale names using the NSDateFormatter without a problem, but I was hoping to have an integer wee …
0
votes
5answers
517 views

DateTime Object Representing Day of Week

How can I convert a number between 1 and 7 into a DateTime object in C# which represents the day of the week? The numbers are coming from a XML file which I am parsing. I am retrie …
0
votes
5answers
317 views

Getting number of certain days-of-the-week (weekend) from interval in PostgreSQL.

Given 2 timestamps in postgres, how do you calculate the time difference without counting whole Saturdays and Sundays? OR How do you count the number of Saturdays and Sundays in …