473,387 Members | 1,512 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

SQL Help???

Hi,

i am trying to run a simple SQL statement from my C# app to return a number
of records, however when i do my record count is always zero, but i know
there are transactions in there... My code is as follows...

"SELECT * FROM " + Table + " WHERE Date >=" + "#" +
DateFrom.ToShortDateString() + "#" + " And " + " Date <=" + "#" +
DateTo.ToShortDateString() + "#"

I don't get any exceptions or other warnings... the code executes fine...
but my records returned is always zero??? i can't work it out!

Any help would be appreciated.

Regards

Darryn
Nov 16 '05 #1
4 1167
Darryn Ross wrote:
Hi,

i am trying to run a simple SQL statement from my C# app to return a
number of records, however when i do my record count is always zero,
but i know there are transactions in there... My code is as follows...

"SELECT * FROM " + Table + " WHERE Date >=" + "#" +
DateFrom.ToShortDateString() + "#" + " And " + " Date <=" + "#" +
DateTo.ToShortDateString() + "#"

I don't get any exceptions or other warnings... the code executes
fine... but my records returned is always zero??? i can't work it out!

Any help would be appreciated.

Regards

Darryn


This is for Access, right? (the #date# syntax is Access-specific).
Could it be that you write the date in dd-mm-yyyy format, but it
is interpreted as mm-dd-yyyy (or the other way around)?

What if you print the sql-string and execute that directly in Access?
Then again, maybe if *you* execute it, Access follows *your*
international settings. If the aspnet user executes it, Acces might
follow *it's* settings.

I personally never like "string to date" conversions (what format is used?).
It might be better to use real parameters where you can use the real
DateTime value.

Hans Kesting
Nov 16 '05 #2
Hi Darryn,

I may not be much help here, because I don't even know what the "#"
signs actually mean. I don't think you want to send them to SQL. I'm
better at SQL than C#, but I do know both.

Anyway, my guess is that the date field you are querying on has a
non-zero time portion. So, for example, if you have a field like
this:

Transaction_Date
----------------
11/01/2004 10:30:45

Then, a query asking to return all records WHERE Transaction_Date =
'11/01/2004' will absolutely NOT return this record. Although, I
think some databases might allow you to setup your date/time defaults
to allow that behavior (I'm not sure about that part).

Anyway, this is a very common problem, and in practice, there are
several ways around this, and depending on your environment and
requirements, you can pick from these. There may be other options.
Let me know if you find a better one.

Option 1 - Eliminate the time portion from the comparison

- Oracle: WHERE TRUNC(Transaction_Date) =
TO_DATE('11/01/2004','MM/DD/YYYY')
- SQL Server: WHERE CONVERT(varchar,Transaction_Date,111) =
'2004/11/01'

I'm more familiar with the Oracle fix here, and have not yet been able
to find a better way in SQL Server. The 111 is a style parameter that
expects the YYYY/MM/DD format on the right side. There is a
corresponding format mask in C# .NET. You could also convert to a
date, but that may be too much overhead. Using the 111 allows a
simple string comparison to actually work because you send the year,
then the month, then the day, which ensures a proper comparison in
cases where a simple equals (i.e. =) comparison is not being used.
That is, you wouldn't want to compare a string in the form DD/MM/YYYY
to a >= operator. You'll get incorrect results.

You should note that both of these approaches will probably break
(i.e. not use) your indexes, potentially causing slower performance.
This would be a problem in a data-warehouse environment, but not in an
operational system. There are ways around that too, possibly
including function-based indexes. I haven't gotten around to trying
that too much.

Option 2 - Don't store the time portion OR Store it separately

Dates and times cannot usually be stored independently, at least not
in a 'datetime' field. That is, you usually need them both together.
A time can not be stored without it's date. From what I've read, if
you have a data-warehouse environment with lots of data where using an
index is important (and therefore option 1 would not really be smart),
then some people recommend storing the value in two separate fields.
One would be the date, with a 00:00:00 time (for searching), the other
would be the date and the actual time (for display). I have also seen
the time stored in a char(5) field. Either way would work.

Good luck and let me know if this helped or hurt you.

-Ryan
"Darryn Ross" <da****@datawave.com.au> wrote in message news:<e#*************@TK2MSFTNGP09.phx.gbl>...
Hi,

i am trying to run a simple SQL statement from my C# app to return a number
of records, however when i do my record count is always zero, but i know
there are transactions in there... My code is as follows...

"SELECT * FROM " + Table + " WHERE Date >=" + "#" +
DateFrom.ToShortDateString() + "#" + " And " + " Date <=" + "#" +
DateTo.ToShortDateString() + "#"

I don't get any exceptions or other warnings... the code executes fine...
but my records returned is always zero??? i can't work it out!

Any help would be appreciated.

Regards

Darryn

Nov 16 '05 #3
Hans,

I ended up working it out, like you said Access requires Us date time
formats so i was sending dd/mm/yyyy when it requires mm/dd/yyyy?? stupid but
it's fine now anyway.

Thanks

Darryn

"Hans Kesting" <ne***********@spamgourmet.com> wrote in message
news:e0**************@tk2msftngp13.phx.gbl...
Darryn Ross wrote:
Hi,

i am trying to run a simple SQL statement from my C# app to return a
number of records, however when i do my record count is always zero,
but i know there are transactions in there... My code is as follows...

"SELECT * FROM " + Table + " WHERE Date >=" + "#" +
DateFrom.ToShortDateString() + "#" + " And " + " Date <=" + "#" +
DateTo.ToShortDateString() + "#"

I don't get any exceptions or other warnings... the code executes
fine... but my records returned is always zero??? i can't work it out!

Any help would be appreciated.

Regards

Darryn
This is for Access, right? (the #date# syntax is Access-specific).
Could it be that you write the date in dd-mm-yyyy format, but it
is interpreted as mm-dd-yyyy (or the other way around)?

What if you print the sql-string and execute that directly in Access?
Then again, maybe if *you* execute it, Access follows *your*
international settings. If the aspnet user executes it, Acces might
follow *it's* settings.

I personally never like "string to date" conversions (what format is

used?). It might be better to use real parameters where you can use the real
DateTime value.

Hans Kesting

Nov 16 '05 #4
Hans,

I ended up working it out, like you said Access requires Us date time
formats so i was sending dd/mm/yyyy when it requires mm/dd/yyyy?? stupid but
it's fine now anyway.

Thanks

Darryn

"Hans Kesting" <ne***********@spamgourmet.com> wrote in message
news:e0**************@tk2msftngp13.phx.gbl...
Darryn Ross wrote:
Hi,

i am trying to run a simple SQL statement from my C# app to return a
number of records, however when i do my record count is always zero,
but i know there are transactions in there... My code is as follows...

"SELECT * FROM " + Table + " WHERE Date >=" + "#" +
DateFrom.ToShortDateString() + "#" + " And " + " Date <=" + "#" +
DateTo.ToShortDateString() + "#"

I don't get any exceptions or other warnings... the code executes
fine... but my records returned is always zero??? i can't work it out!

Any help would be appreciated.

Regards

Darryn
This is for Access, right? (the #date# syntax is Access-specific).
Could it be that you write the date in dd-mm-yyyy format, but it
is interpreted as mm-dd-yyyy (or the other way around)?

What if you print the sql-string and execute that directly in Access?
Then again, maybe if *you* execute it, Access follows *your*
international settings. If the aspnet user executes it, Acces might
follow *it's* settings.

I personally never like "string to date" conversions (what format is

used?). It might be better to use real parameters where you can use the real
DateTime value.

Hans Kesting

Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
9
by: Tom | last post by:
A question for gui application programmers. . . I 've got some GUI programs, written in Python/wxPython, and I've got a help button and a help menu item. Also, I've got a compiled file made with...
6
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing...
3
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
7
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available...
5
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time...
8
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both...
10
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably...
1
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve...
0
by: hitencontractor | last post by:
I am working on .NET Version 2003 making an SDI application that calls MS Excel 2003. I added a menu item called "MyApp Help" in the end of the menu bar to show Help-> About. The application...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.