Jump to content
  • 0

Проблема с использованием параметра OFFSET в sql-запросе


Torawhite
 Share

Question

Здравствуйте! Пытаюсь реализовать постраничную навигацию. Проблема встала в выдаче следующей ошибки

"ERROR: SQLSTATE[42000]: Syntax error or access violation: 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 ''5',5' at line 1"

 

Сам запрос, в котором сервер видит ошибку:

$stmt = $pdo->prepare('SELECT * FROM male_articles ORDER BY id DESC LIMIT :offset,:limit');$stmt->bindValue(':limit', $count, PDO::PARAM_INT);$stmt->bindValue(':offset', $start, PDO::PARAM_INT);$stmt->execute();$pages = $stmt->fetchAll(PDO::FETCH_ASSOC);

Пробовал и так, как выше, и так:

$stmt = $pdo->prepare('SELECT * FROM male_articles ORDER BY id DESC LIMIT :limit OFFSET :offset');$stmt->bindValue(':limit', $count, PDO::PARAM_INT);$stmt->bindValue(':offset', $start, PDO::PARAM_INT);$stmt->execute();$pages = $stmt->fetchAll(PDO::FETCH_ASSOC);

Судя по выводу цифр в ошибке, переменные туда попадают. Не могу понять, чем не нравится такой запрос серверу...

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Судя по ошибке, проблема в типе данных, то есть передаётся строка, когда в запросе нужно число.

Да, вы правы. Нужно (int) поставить перед переменной в bindValu. Спасибо

Edited by Torawhite
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