Jump to content
  • 0

mysql_query не возвращает true


tt48
 Share

Question

Доброго времени суток.

Есть база данных в cp1251,

есть скрипт на той же кодиовке.

Из бд все читает нормально, удаляет тож нормально.

Никак не хочет чего-либо менять


$reds=mysql_query("UPDATE $table SET 'url'='$url' WHERE id = $id");

reds всегда получается пустой и записи не меняются.

При этом все передаваемые параметры корректны..

В чем может быть проблема?

Edited by tt48
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

я всегда делаю так, заряжаю запрос в echo, аля


$reds=mysql_query("UPDATE $table SET 'url'='$url' WHERE id = $id");
echo("UPDATE $table SET 'url'='$url' WHERE id = $id");

нахожу этот запрос на странице, копирую, открываю mysqladmin и вставляю туда запрос, смотрю что возвращает mysql. Думаю всё сразу станет ясно.

  • Like 1
Link to comment
Share on other sites

  • 0


SQL-запрос:

UPDATE `price2` SET `url` = `ddsf` WHERE id =10

Ответ MySQL: Документация
#1054 - Unknown column 'ddsf' in 'field list'

???

Я не врубил все равно.

Но инфы уже больше, спасибо.

Поигрался с ковычками

$query="UPDATE $table SET url = '$url' WHERE id = $id";

так все работает..

В дургом файле:


mysql_query("UPDATE `$table` SET `name` = '$name',`url` = '$url',`group1` = '$group1',`time` = '$time',`min`='$min' WHERE `id` =$f");

И тоже все работает..

непонимаю...

Edited by tt48
Link to comment
Share on other sites

  • 0

новое:


UPDATE price2 SET `url` = 'фывфы',
`group` = 'лолодл',
`section` = 'ыва',
`part` = 'фвыва',
`name` = 'олололо',
`time` = '12',
`min` = '36500',
`max` = '123',
WHERE id =10

Ответ MySQL: Документация
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = 10' at line 9

group он требует обязательно в ковычки - резервированное слово походу..

ковычки ж не должны вообще ни на что влиять...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy