Re: MySQL Date problem

2008-10-20 Thread Moon's Father
Timestamp is the best bridge between java and mysql,I think. On Sun, Oct 19, 2008 at 4:48 PM, Rama [EMAIL PROTECTED] wrote: DATE TIME ZONE SENSITIVE DATETIME NOT SENSITIVE TO TIME ZONE TIMESTAMP TIMEZONE SENSITIVE iam getting the above problem as date is timezone sensitive.i resolved

Re: MySQL Date problem

2008-10-20 Thread Rama
iam sorry iam facing same problem with the datetime iam confused and working/investigating on it. Problem is : Java Program MYSQL - -- - Default timezone : GMT

Re: MySQL Date problem

2008-10-20 Thread Rama
+0530 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: MySQL Date problem CC: mysql@lists.mysql.com; [EMAIL PROTECTED]; [EMAIL PROTECTED] iam sorry iam facing same problem with the datetime iam confused and working/investigating on it. Problem is : Java Program MYSQL

Re: MySQL Date problem

2008-10-19 Thread SK
2008/10/19 Rama [EMAIL PROTECTED] hi, iam using java,hibernate,mysql i am storing *19-10-2008 (*of type java.sql.Date) (TIMEZONE GMT) to mysql DATE field. when i retrieve the same date from mysql to java it is being displayed as *18-10-2008 18:30:00 GMT * i could not able to

Re: MySQL Date problem

2008-10-19 Thread Rama
i figured out the root cause of the problem. 1) Java TIME ZONE is GMT --- storing DATE (2008-10-19 which is in GMT ) 2) storing the above date in GMT to mysql 3) MYSQL TIME ZONE IS GMT+05:30 4) as mysql time zone is GMT+05:30 it is viewing the date as (2008-10-19) @

Re: MySQL Date problem

2008-10-19 Thread Rama
The above argument applies to only MYSQL DATE field (timezone sensitive) where as in the case DATETIME Field it does not do any conversion gets what we store (timezone insensitive) in the case of TIMESTAMP Field it gets converted between UTC and local timezone.

Re: MySQL Date problem

2008-10-19 Thread Roland Kaber
SK wrote: 2008/10/19 Rama [EMAIL PROTECTED] hi, iam using java,hibernate,mysql i am storing *19-10-2008 (*of type java.sql.Date) (TIMEZONE GMT) to mysql DATE field. when i retrieve the same date from mysql to java it is being displayed as *18-10-2008 18:30:00 GMT * i could not

Re: MySQL Date problem

2008-10-19 Thread Rama
DATE TIME ZONE SENSITIVE DATETIME NOT SENSITIVE TO TIME ZONE TIMESTAMP TIMEZONE SENSITIVE iam getting the above problem as date is timezone sensitive.i resolved it by changing the field type from date to string. YOu can use any method to fill the DATE field of mysql .which method we use

MySQL Date problem

2008-10-18 Thread Rama
hi, iam using java,hibernate,mysql i am storing *19-10-2008 (*of type java.sql.Date) (TIMEZONE GMT) to mysql DATE field. when i retrieve the same date from mysql to java it is being displayed as *18-10-2008 18:30:00 GMT * i could not able to figure out what is going wrong . can any one

DATE problem

2006-01-10 Thread Mester József
Hy all I would like to get date in my web page. There are three different fields. YEAR MONTH and DAY I thought in SQL possible create table like this /*from my book*/ create table dates ( input_year DATETIME YEAR TO YEAR, input_month DATETIME MONTH

Re: DATE problem

2006-01-10 Thread Gleb Paharenko
Hello. MySQL doesn't support this syntax. See: http://dev.mysql.com/doc/refman/5.0/en/create-table.html If you want to automatically extract the year (month, day) part from the inserted value, you may want to use TRIGGERS, however, in my opinion, it is better to redesign your table

DATE problem

2005-02-01 Thread René Fournier
I'm trying to count rows that were added today. The column that I am counting on is in DATETIME format, so there are hours and minutes and seconds recorded, but I only need to check the date $sql = SELECT COUNT(table.id) FROM table

RE: DATE problem

2005-02-01 Thread Mike Johnson
From: René Fournier [mailto:[EMAIL PROTECTED] I'm trying to count rows that were added today. The column that I am counting on is in DATETIME format, so there are hours and minutes and seconds recorded, but I only need to check the date $sql =SELECT

Re: DATE problem

2005-02-01 Thread Michael Stassen
Mike Johnson wrote: From: René Fournier [mailto:[EMAIL PROTECTED] I'm trying to count rows that were added today. The column that I am counting on is in DATETIME format, so there are hours and minutes and seconds recorded, but I only need to check the date $sql = SELECT

Re: Previous date problem

2005-01-24 Thread Jigal van Hemert
so it will be like this no date price limit 01 1/1/05 5000 100 02 1/2/05 5010 100 03 1/3/05 5020 60 ** 04 1/6/05 5010 100 ** there are 3 days difference but how do make a query to check for record no 04 with 03 how do i retrieved the 1/3/05 date and the price You actually want the

Re: Previous date problem

2005-01-24 Thread SGreen
Jigal van Hemert [EMAIL PROTECTED] wrote on 01/24/2005 03:10:40 AM: so it will be like this no date price limit 01 1/1/05 5000 100 02 1/2/05 5010 100 03 1/3/05 5020 60 ** 04 1/6/05 5010 100 ** there are 3 days difference but how do make a query to check for record no 04 with 03

Previous date problem

2005-01-23 Thread Chenri
-- Forwarded message -- From: Chenri [EMAIL PROTECTED] Date: Mon, 24 Jan 2005 08:22:01 +0700 Subject: To: mysql@lists.mysql.com i have a price table no date price limit 01 1/1/05 5000 100 02 1/2/05 5010 100 03 1/3/05 5020 60 in order to input a record the price must be checked

Date Problem

2004-03-09 Thread Eric Scuccimarra
We have a table with a Date Time field and we need to update only the date portion of that field. We have table a with field Foo with value '2004-01-01 12:15:00' and a date '2004-03-01' and we need to change the date portion of Foo to the date and leave the time part alone. So Foo would

Re: Date Problem

2004-03-09 Thread Richard Davey
Hello Eric, Tuesday, March 9, 2004, 11:46:23 PM, you wrote: ES We have a table with a Date Time field and we need to update only the date ES portion of that field. ES We have table a with field Foo with value '2004-01-01 12:15:00' and a date ES '2004-03-01' and we need to change the date

Re: Date Problem

2004-03-09 Thread Peter Burden
Richard Davey wrote: Hello Eric, Tuesday, March 9, 2004, 11:46:23 PM, you wrote: ES We have a table with a Date Time field and we need to update only the date ES portion of that field. ES We have table a with field Foo with value '2004-01-01 12:15:00' and a date ES '2004-03-01' and we need to

Re[2]: Date Problem

2004-03-09 Thread Richard Davey
Hello Peter, Wednesday, March 10, 2004, 12:16:51 AM, you wrote: PB But that is adding two days, the original query was to add two PB months, so presumably it should be INTERVAL 2 MONTH - but beware PB that MySQL does some It should, sorry, I'm too used to the UK date format (even though I know

strange date problem

2003-10-01 Thread Chris Edwards
Hi I'm running this query: INSERT INTO `events`( `domain`, `title`, `body`, `begin`, `end`, `frequency`, `author` ) VALUES( 01, 'Test 2', 'Event is not displaying correct date.', '2003-10-25 24:00:00', '2003-10-01 24:00:00', '0', 'Rachel' ) I get no errors from mysql. (MySQL 3.23.54) on a

Re: strange date problem SOLVED

2003-10-01 Thread Chris Edwards
I'm running this query: INSERT INTO `events`( `domain`, `title`, `body`, `begin`, `end`, `frequency`, `author` ) VALUES( 01, 'Test 2', 'Event is not displaying correct date.', '2003-10-25 24:00:00', '2003-10-01 24:00:00', '0', 'Rachel' ) I get no errors from mysql. (MySQL 3.23.54) on a

Update Date Problem with VB

2003-09-24 Thread Optik Bacik Scheibbs
Hey! So this is my first time here... I am using myODBC 3.51 Server 4.0.14 So I created a table with one columm called GebDat - format Date I connect to this DB using VB6 (SP5) with ADO. OK - So when I add a new data it works fine. But when I will update any one data I always get an error! I

Re: Update Date Problem with VB

2003-09-24 Thread Lourdes Millán
Hi, What is the table definition? Have you got a primary index? I work with date fields without problems in this way: Update table set Date_Field = '2003-08-01' Where Date_Field = '2003-01-19' Lourdes. Optik Bacik Scheibbs escribió: Hey! So this is my first time here... I am using myODBC

Re: Update Date Problem with VB

2003-09-24 Thread Victoria Reznichenko
Optik Bacik Scheibbs [EMAIL PROTECTED] wrote: So this is my first time here... I am using myODBC 3.51 Server 4.0.14 So I created a table with one columm called GebDat - format Date I connect to this DB using VB6 (SP5) with ADO. OK - So when I add a new data it works fine. But when I

Date Problem

2003-08-14 Thread Girish Agarwal
Hi All, I have added the date column ( column name is dolv ) in mysql as CHAR(10) as I needed the date in mmdd separated by mm/dd/. Now I want to have this column contain the date whenever the updation to that column is done. Please advise as to how I can achieve this without losing

Re: Date Problem

2003-08-08 Thread Roger Baklund
* Girish Agarwal Hi All, I have added the date column ( column name is dolv ) in mysql as CHAR(10) Then it is not a 'date column', but s string column... ;) See the manual for a description of the different column types: URL: http://www.mysql.com/doc/en/Column_types.html URL:

date problem

2003-03-23 Thread nobody
Hello mysql, I do this: $query = INSERT INTO news(ID, author, title, text, date) VALUES(NULL, '.$_SESSION[ulogged].', '.$title.', '.$text.', UNIX_TIMESTAMP(NOW())); $result = mysql_query($query, $connection) or die(problem with query); I get this: mysql select * from news where id='1';

RE: date problem

2003-03-23 Thread Michael Shulman
, or this is entry in GMT? Is there a way to determine the local timezone on the machine? -ms -Original Message- From: nobody [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 12:56 PM To: [EMAIL PROTECTED] Subject: date problem Hello mysql, I do this: $query = INSERT INTO news(ID

Re[2]: date problem

2003-03-23 Thread nobody
:[EMAIL PROTECTED] MS Sent: Sunday, March 23, 2003 12:56 PM MS To: [EMAIL PROTECTED] MS Subject: date problem MS Hello mysql, MS I do this: MS $query = INSERT INTO news(ID, author, title, text, date) VALUES(NULL, MS '.$_SESSION[ulogged].', '.$title.', '.$text.', MS UNIX_TIMESTAMP(NOW())); MS $result

RE: date problem

2003-03-23 Thread Don Read
| ++ | -08:00:00 | ++ 1 row in set (0.00 sec) -Original Message- From: nobody [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 12:56 PM To: [EMAIL PROTECTED] Subject: date problem Hello mysql, I do this: $query = INSERT INTO news(ID, author

Re[2]: date problem

2003-03-23 Thread nobody
) -Original Message- From: nobody [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 12:56 PM To: [EMAIL PROTECTED] Subject: date problem Hello mysql, I do this: $query = INSERT INTO news(ID, author, title, text, date) VALUES(NULL, '.$_SESSION[ulogged].', '.$title.', '.$text

Re: date problem

2002-06-06 Thread Sammy Lau
-do you have any index covering this query? -this is not a good practice to have function call(s) in the where clause, since mysql will make the fucntion call for every rows scanned. select count(*) as c from users_table where user_regdate 2002-06-01 00:00:00 -furthermore, in the where clause, =

date problem

2002-06-05 Thread andy
Hi there, I would like to count the users out of a mysql db who registered after a certain date. The column I have in the db is a char and I do not want to change this anymore. This is how a typical entry looks like: May 29, 2002 This is how I tryed it: // while '10...' is unix timestamp june

A date problem

2002-05-28 Thread I. TS
Hi, I also have a date problem: My SQL query problem: For example, I have the following table: Mytable: No Name Date Project 1 Bob 2002-05-27Bob's project 2 John -00-00 John's project When I query select * from

RE: A date problem

2002-05-28 Thread Moyer, Andy
Since it's a date field, it's a date comparison and the date that you specify ('WWW') gets parsed by the optimizer as being the date '-00-00' since it can't find any valid date information. This is different from if it was to convert the date to a string and do a string comparison, which is

Re: Date Problem

2002-05-17 Thread Paul
Hi All I have a column in my MySql database with datetime column.i want to get only date part of that column .is any easy way to do that. Thanks a Lot Paul - Before posting, please check:

Re: Re: Date Problem

2002-05-17 Thread Egor Egorov
Paul, Friday, May 17, 2002, 12:11:37 PM, you wrote: I have a column in my MySql database with datetime column.i want to get P only date part of that column .is any easy way to do that. Look at DATE_FORMAT() function: http://www.mysql.com/doc/D/a/Date_and_time_functions.html Thanks a

Re: INFILE DATE Problem

2002-01-16 Thread DL Neil
Vernon, I'm using the: LOAD DATA LOCAL INFILE /home/filename.txt INTO TABLE list; which works just fine. Only problem is the date column which is formatted as such 4/11/1970 comes out as - 00- 00 The date field is setup as Field: s_date, Type: date, Null, YES, Key: BLANK, Default:

INFILE DATE Problem

2002-01-15 Thread Vernon A Webb
I'm using the: LOAD DATA LOCAL INFILE /home/filename.txt INTO TABLE list; which works just fine. Only problem is the date column which is formatted as such 4/11/1970 comes out as - 00- 00 The date field is setup as Field: s_date, Type: date, Null, YES, Key: BLANK, Default: Null, Extra

Re: update date problem

2001-11-30 Thread Thomas Spahni
On Thu, 29 Nov 2001, nut sss wrote: can i do this? content in field=aaa,bbb,ccc,hhh new content=aaa,bbb,ccc,hhh,fff can i append new word fff into the old field .by use update command in 1 query :) it's like UPDATE persondata SET age=age+1 but i want to append new value

Re: update date problem

2001-11-30 Thread sherzodR
UPDATE your_table SET your_col = CONCAT(your_col, fff); nut sss wrote: ns: can i do this? ns:content in field=aaa,bbb,ccc,hhh ns:new content=aaa,bbb,ccc,hhh,fff ns:can i append new word fff into the old field .by ns: use update command in 1 query :)

update date problem

2001-11-29 Thread nut sss
can i do this? content in field=aaa,bbb,ccc,hhh new content=aaa,bbb,ccc,hhh,fff can i append new word fff into the old field .by use update command in 1 query :) it's like UPDATE persondata SET age=age+1 but i want to append new value into old field... what should i do . help

date problem

2001-01-15 Thread Yamin Prabudy
I got a problem in converting the Jan 21 2001 format to 2001-01-21 I always got a null as result when i do date_format('Jan 21 2001','%Y-%m-%d') can anyone help me with this - Before posting, please check:

Re: date problem

2001-01-15 Thread Bob Hall
I got a problem in converting the Jan 21 2001 format to 2001-01-21 I always got a null as result when i do date_format('Jan 21 2001','%Y-%m-%d') can anyone help me with this Sir, off the top of my head, I don't think there's a function for this. Date_format() converts from MySQL format to