If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > help with syntax

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-05-03, 13:00
bobwilli bobwilli is offline
Registered User
 
Join Date: Nov 2003
Posts: 7
help with syntax

I am trying to construct a statement like this to get data form a MYSQL database.

it doesn't seem to be getting the values. It just brings out all the data.
I am passing the values 'dateStart' and 'dateEnd' derived from an user input from field.
--------

String sql = "select login_id, fullname, email, expires_dtime"
+ " from loginpw"
+ " where expires_dtime >= "
+ dateStart + " <= " + dateEnd ;
Result result = csuser.execute(csuser.newStatement(sql));

--------------

if I try where expires_dtime >= 'date' and expires_dtime <= 'date' ;

it throws an sql error.
Reply With Quote
  #2 (permalink)  
Old 11-05-03, 13:18
bstjean bstjean is offline
Registered User
 
Join Date: Sep 2002
Location: Montreal, Canada
Posts: 219
Re: help with syntax

Quote:
Originally posted by bobwilli
I am trying to construct a statement like this to get data form a MYSQL database.

it doesn't seem to be getting the values. It just brings out all the data.
I am passing the values 'dateStart' and 'dateEnd' derived from an user input from field.
--------

String sql = "select login_id, fullname, email, expires_dtime"
+ " from loginpw"
+ " where expires_dtime >= "
+ dateStart + " <= " + dateEnd ;
Result result = csuser.execute(csuser.newStatement(sql));

--------------

if I try where expires_dtime >= 'date' and expires_dtime <= 'date' ;

it throws an sql error.
Whic error?
Have you tried the final SQL statement from the MySQL client?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On