Click here to Skip to main content
15,921,542 members
Home / Discussions / Database
   

Database

 
GeneralRe: auto number generated Pin
Tarakeshwar Reddy16-Jun-04 22:57
professionalTarakeshwar Reddy16-Jun-04 22:57 
GeneralRe: auto number generated Pin
WoutL16-Jun-04 23:09
WoutL16-Jun-04 23:09 
GeneralRe: auto number generated Pin
VenkatFor.NET17-Jun-04 4:57
VenkatFor.NET17-Jun-04 4:57 
QuestionHow to use a DataSet on a form, in another form. Pin
Member 114126616-Jun-04 21:23
Member 114126616-Jun-04 21:23 
AnswerRe: How to use a DataSet on a form, in another form. Pin
Tarakeshwar Reddy16-Jun-04 23:01
professionalTarakeshwar Reddy16-Jun-04 23:01 
AnswerRe: How to use a DataSet on a form, in another form. Pin
VenkatFor.NET17-Jun-04 5:00
VenkatFor.NET17-Jun-04 5:00 
QuestionHow to Fetch records Between two Dates Pin
Zeeshan Bilal16-Jun-04 20:03
Zeeshan Bilal16-Jun-04 20:03 
AnswerRe: How to Fetch records Between two Dates Pin
Anonymous16-Jun-04 21:06
Anonymous16-Jun-04 21:06 
The reason you don't need # for the insert is because the date is in DD-MMMM-YYYY format.
When you insert a date, it is preferable to use ISO format, which is YYYY-MM-DD or YYYY/MM/DD (I know, ISO is supposed to be YYYYMMDD, but it doesn't work with Access without the / or - ).

Here's an example on inserting date:
INSERT INTO tblTest(dtmDate) VALUES (#2004-06-17)

When you query data using daterange, also use the ISO format otherwise the DD part may be assumed as MM or vice versa.
Here's an example on specifying date range condition:
SELECT * FROM tblTest WHERE tblTest.dtmDate BETWEEN #2001-01-01# AND #2002-01-15#

Hope it helps. Wink | ;)
GeneralRe: How to Fetch records Between two Dates Pin
Zeeshan Bilal16-Jun-04 21:29
Zeeshan Bilal16-Jun-04 21:29 
GeneralRe: How to Fetch records Between two Dates Pin
EdbertP17-Jun-04 13:06
EdbertP17-Jun-04 13:06 
GeneralRe: How to Fetch records Between two Dates Pin
Zeeshan Bilal17-Jun-04 19:17
Zeeshan Bilal17-Jun-04 19:17 
GeneralRe: How to Fetch records Between two Dates Pin
Zeeshan Bilal17-Jun-04 19:25
Zeeshan Bilal17-Jun-04 19:25 
GeneralRe: How to Fetch records Between two Dates Pin
Zeeshan Bilal17-Jun-04 19:29
Zeeshan Bilal17-Jun-04 19:29 
QuestionHow to use msadox and msado15 dll together Pin
Kaustubh_deo16-Jun-04 20:00
Kaustubh_deo16-Jun-04 20:00 
AnswerRe: How to use msadox and msado15 dll together Pin
RichardGrimmer17-Jun-04 3:49
RichardGrimmer17-Jun-04 3:49 
Questionhow i can take the sum of times Pin
syed saba16-Jun-04 1:01
syed saba16-Jun-04 1:01 
AnswerRe: how i can take the sum of times Pin
WoutL16-Jun-04 3:39
WoutL16-Jun-04 3:39 
GeneralRe: how i can take the sum of times Pin
syed saba16-Jun-04 3:50
syed saba16-Jun-04 3:50 
GeneralPulling the latest entry for ALL products BY DATE from a table Pin
lostsheep00715-Jun-04 22:22
lostsheep00715-Jun-04 22:22 
GeneralRe: Pulling the latest entry for ALL products BY DATE from a table Pin
WoutL15-Jun-04 22:53
WoutL15-Jun-04 22:53 
GeneralRe: Pulling the latest entry for ALL products BY DATE from a table Pin
lostsheep00715-Jun-04 23:24
lostsheep00715-Jun-04 23:24 
GeneralRe: Pulling the latest entry for ALL products BY DATE from a table Pin
Colin Angus Mackay16-Jun-04 0:14
Colin Angus Mackay16-Jun-04 0:14 
GeneralRe: Pulling the latest entry for ALL products BY DATE from a table Pin
lostsheep00716-Jun-04 21:48
lostsheep00716-Jun-04 21:48 
GeneralEnterprise Manager problem Pin
TPN15-Jun-04 21:44
TPN15-Jun-04 21:44 
GeneralRe: Enterprise Manager problem Pin
RichardGrimmer15-Jun-04 22:15
RichardGrimmer15-Jun-04 22:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.