Member Login

Username
Password
Forget Password
New Sign Up
Search Forum

Buy Support
Incidents

If you can't find your answer in the FREE PUBLIC QDeveloper Forum, require URGENT Priority Support, or you need to send us private or confidential information:

Click Here
If you can't login and post questions or you are having trouble viewing forum posts:
Click Here
Callback
Support

If you live in USA, UK, Canada, Australia or New Zealand, you can leave us details on your question and request us to call you back and discuss them with you personally  (charges apply).

Click Here
 
Buy Support
Incidents
If you can't find your answer in the FREE PUBLIC QDeveloper Forum, require URGENT Priority Support, or you need to send us private or confidential information:
Click Here

Forum : Inserting Dates!!Search Forum

Forum Home > FlexODBC - ODBC Driver for DataFlex Embedded DBMS > FlexODBC SQL Support Forum

 New Topic 
 
 Post Reply 
[1]  
 Inserting Dates!! 
 Author   Message 
  Leon 
  
 Group: Members 
 Posts: 1 
 Joined: 2006-08-03 
 Profile
 Posted : 2006-08-03 05:25:48

I need to know How I insert a date column, what is the SQL syntac to do it?

This is what I try:

insert into table (datepast) values ('02/25/2006')

insert into table (datepast) values ({'02/25/2006'})

insert into table (datepast) values ({d '02/25/2006'})

but nothing work!!

 

Thank you for the help....

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2006-08-03 09:31:07
If you have any problems with the date format, use this format for direct SQL calls to our driver:  {d'YYYY-MM-DD'} for example: {d ‘2006-01-27’}

Date and time stamps use this format:
SELECT * from Invoice WHERE Txndate >= {d '2005-09-23'}


Use this format for Microsoft Access queries:
SELECT * from Invoice WHERE Txndate >= #9/23/2005#

The Access format may vary based on the setting for your default date format for your region in your Windows control panel.
  

  Top 
 New Topic 
 
 Post Reply 
[1]  

Jump to