Re: problem with update statement

2005-04-25 Thread ragan_davis
, 2005 9:26 am Subject: Re: problem with update statement > Hi, > this is an example where what you describe doesn't happen (v 4.1 > and 5.0) : > mysql> create table ports(mac varchar(17),port_index varchar(3)); > Query OK, 0 rows affected (0.10 sec) > > mysql> in

Re: problem with update statement

2005-04-25 Thread mfatene
Hi, this is an example where what you describe doesn't happen (v 4.1 and 5.0) : mysql> create table ports(mac varchar(17),port_index varchar(3)); Query OK, 0 rows affected (0.10 sec) mysql> insert into ports values('00:04:FB:23:5A:44','120'),(NULL,'120'); Query OK, 2 rows affected (0.08 sec) Recor

Re: problem with update statement

2005-04-25 Thread Brent Baisley
That is very odd behavior and shouldn't be happening. I ran a quick test on my machine and MySQL does not exhibit that behavior. You may try running and repair on your table. Perhaps something is out of whack. What version of MySQL are you running? On Apr 22, 2005, at 6:08 PM, [EMAIL PROTECTED]

RE: Problem with UPDATE statement

2001-08-10 Thread Don Read
On 10-Aug-2001 Julian Simpson wrote: > In what way is it mangling my query? > and why won't the same query work from my php script. > I would accept this if it was just any interface but myphpadmin is supposed > to be in line with mysql standards. > >>> update cdrequest set albumfill = "hot sho

Re: Problem with UPDATE statement

2001-08-09 Thread Julian Simpson
>> In what way is it mangling my query? >> and why won't the same query work from my php script. >> I would accept this if it was just any interface but myphpadmin is supposed to be >in line with mysql standards. >> >> >> update cdrequest set albumfill = "hot shots II", releasedatefill >> >> =

Re: Problem with UPDATE statement

2001-08-09 Thread Maurice Aubrey
On Fri, Aug 10, 2001 at 02:19:21AM -0400, Julian Simpson wrote: > In what way is it mangling my query? > and why won't the same query work from my php script. > I would accept this if it was just any interface but myphpadmin is supposed to be in >line with mysql standards. > > >> update cdreque

RE: Problem with UPDATE statement

2001-08-09 Thread Julian Simpson
In what way is it mangling my query? and why won't the same query work from my php script. I would accept this if it was just any interface but myphpadmin is supposed to be in line with mysql standards. >> update cdrequest set albumfill = "hot shots II", releasedatefill >> = 20010708 where requ

RE: Problem with UPDATE statement

2001-08-09 Thread Chris Bolt
> update cdrequest set albumfill = "hot shots II", releasedatefill > = 20010708 where requstID = 2; > > i get: > You have an error in your SQL syntax near '\"hot shots II\", > releasedatefill = 20010708 where requstID = 2' at line 1 > I can't see any reason for the error. Your web based inte