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 : No result return when time set to midnightSearch Forum

Forum Home > QODBC - ODBC Driver for QuickBooks > QODBC Bug Reports

 New Topic 
 
 Post Reply 
[1]  
 No result return when time set to midnight 
 Author   Message 
  Neal 
  
 Group: Members 
 Posts: 27 
 Joined: 2006-07-23 
 Profile
 Posted : 2006-07-23 02:08:45

This returns zero records

SELECT * FROM Customer WHERE TimeModified > {ts '2005-07-01 00:00:00.000'}

This returns the correct records (Over 200 records in my case)

SELECT * FROM Customer WHERE TimeModified > {ts '2005-07-01 00:00:00.001'}

Note the only difference is the time is set to .001 seconds after midnight.

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2006-07-23 11:52:23

This appears to be a bug in QODBC v6.00.00.176. The workaround is to specify the columns to be used in the query (instead of Select *) ie:

SELECT "Name","LastName","FirstName","BillAddressAddr1",
"BillAddressAddr2","BillAddressCity",
"BillAddressState","BillAddressPostalcode",
'TimeModified' from Customer WHERE TimeModified > {ts '2005-07-01 00:00:00.000'}

and

SELECT "Name","LastName","FirstName","BillAddressAddr1",
"BillAddressAddr2","BillAddressCity",
"BillAddressState","BillAddressPostalcode",
'TimeModified' from Customer WHERE TimeModified > {ts '2005-07-01 00:00:00.001'}

IMPORTANT: Further testing showed that these issues only happen with the QuickBooks Online Edition and SDK 3.0 versions of QuickBooks (non-USA editions of QuickBooks). The above SQL statements work correctly with USA editions of QuickBooks 2006.

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2006-10-03 09:57:31
This issue was resolved with the release of QODBC v7.00.00.194 (and later). 

  Top 
 New Topic 
 
 Post Reply 
[1]  

Jump to