php中對MYSQL操作之預先處理技術(2)資料庫dql查詢語句

來源:互聯網
上載者:User

標籤:資料庫   mysqli   先行編譯   php   

<?php//預先處理技術//建立一個mysqli對象$mysqli = new MySQLi("主機名稱","mysql使用者名稱","密碼","資料庫名");//判斷是否連結成功if($mysqli->connect_error){die($mysqli->connect_error);}//建立先行編譯對象$sql = "select id,name,age,qq from 表名 where id<?";$mysqli_compile = $mysqli->prepare($sql);//綁定參數$id=10;//給?處進行賦值,"ssi"指string,string,int,資料類型和順序一一對應//bind_param()這裡參數數目是可變。$mysqli_compile->bind_param("i",$id);//綁定結果集,這裡是用引用傳參的方式$mysqli_compile->bind_result($name,$age,$qq);//執行語句$res = $mysqli_compile->execute();//失敗列印出原因if(!$res){die("失敗原因=".$mysqli_compile-error);}//取出綁定結果值while($mysqli_compile->fetch()){echo "--$id--$name--$age--$qq";}//如果還要取其他的結果可以再次綁定參數取結果,但不用綁定結果集//釋放結果集$mysqli_compile->free_result();//關閉資源,除去資料庫的先行編譯的指令$mysqli_compile->close();//關閉連結資源$mysqli->close();?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.