집 >데이터 베이스 >MySQL 튜토리얼 >데이터베이스 쿼리를 위해 MySQL에서 MySQLi로 마이그레이션하는 방법: 단계별 가이드
데이터베이스 쿼리를 위해 MySQL에서 MySQLi로 업데이트
MySQL이 더 이상 사용되지 않으므로 많은 개발자가 MySQLi를 사용하도록 코드를 업데이트하고 있습니다. 그러나 MySQLi의 구문에 익숙하지 않은 사람들에게는 전환이 어려울 수 있습니다. 이 문서는 MySQL 쿼리를 동등한 MySQLi 코드로 변환하기 위한 출발점을 제공합니다.
원래 MySQL 코드:
$sql_follows="SELECT * FROM friends WHERE user1_id=".$_SESSION['id']." AND status=2 OR user2_id=".$_SESSION['id']." AND status=2"; $query_follows=mysql_query($sql_follows) or die("Error finding friendships"); if($query_follows>0){ }
MySQLi 코드:
$Your_SQL_query_variable = mysqli_query($connectionvariable, "SELECT * FROM friends WHERE user1_id=".$_SESSION['id']." AND status=2 OR user2_id=".$_SESSION['id']." AND status=2"); if ($mysqli->errno) { printf("Error: %s\n", $mysqli->error); }
추가 도구 및 리소스:
MySQL 변환기 도구: https://github.com /philip/MySQLConverterTool
MySQL Shim 라이브러리: https://github.com/dshafik/php7-mysql -shim
중요 고려 사항:
위 내용은 데이터베이스 쿼리를 위해 MySQL에서 MySQLi로 마이그레이션하는 방법: 단계별 가이드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!