Hello all.
A very irritating problem i am having right now. I'm writing a Photo Album in C# using OleDb connection.
Everything else in the program is working fine. Except one element of searching:
One of the searches i can do is to find all photos for a particular date.
Best to look at my Database to understand more:
http://homepage.eircom.net/~basquille/photoDB.mdb
But basically the user enters in a date and i've incorporated it to run as an SQL statement.
The bizarre thing is: i can search the database providing a date (and
display the results) most of the time successfully with no problems. There's
only 15 entries in 'photo' table - it has a couple of entries for the date
10/01/2000. But when i try and find these, i get nothing back... why would
this be?
To test it out yourself... look at some of the dates (phDate) in the 'photo' table. Try some SQL queries to return information based on a chosen date.
Now try:
Select * from photos where phDate = #10/01/2000#
Very bizarre!
Any feedback or suggestions would be much appreciated.
Brian