首頁 > 後端開發 > php教程 > mysql语句中的冒号是什么意思?该怎么解决

mysql语句中的冒号是什么意思?该怎么解决

WBOY
發布: 2016-06-13 13:28:19
原創
1814 人瀏覽過

mysql语句中的冒号是什么意思?
mysql语句中的冒号是什么意思?


------解决方案--------------------
$db->bandVars(); 传递值 
echo $check_query; 就知道了。
------解决方案--------------------
可以看看手册的pdo类

PHP code

<?php /* Execute a prepared statement by binding PHP variables */
$calories = 150;
$colour = 'red';
$sth = $dbh->prepare('SELECT name, colour, calories
    FROM fruit
    WHERE calories bindParam(':calories', $calories, PDO::PARAM_INT);
$sth->bindParam(':colour', $colour, PDO::PARAM_STR, 12);
$sth->execute();
?>
<br><font color="#e78608">------解决方案--------------------</font><br>没有别的意思符号而已,以便区别于 sql 的语法成分<br>bindVars 方法将定义的符号与实际的变量关联起来
<br><font color="#e78608">------解决方案--------------------</font><br>
登入後複製
PHP code
Example #1 Execute a prepared statement with named placeholders
<?php /* Execute a prepared statement by binding PHP variables */
$calories = 150;
$colour = 'red';
$sth = $dbh->prepare('SELECT name, colour, calories
    FROM fruit
    WHERE calories bindParam(':calories', $calories, PDO::PARAM_INT);
$sth->bindParam(':colour', $colour, PDO::PARAM_STR, 12);
$sth->execute();
?>
Example #2 Execute a prepared statement with question mark placeholders
<?php /* Execute a prepared statement by binding PHP variables */
$calories = 150;
$colour = 'red';
$sth = $dbh->prepare('SELECT name, colour, calories
    FROM fruit
    WHERE calories bindParam(1, $calories, PDO::PARAM_INT);
$sth->bindParam(2, $colour, PDO::PARAM_STR, 12);
$sth->execute();
?> <div class="clear">
                 
              
              
        
            </div>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板