PHP mysql_query 쿼리문 에러 체크
페이지 정보
본문
1. $res = mysql_query($sql); // 에러 전의 화면 까지만 보임
2. $res = mysql_query($sql) or die(); // 실행 중지 (아무것도 안보임)
3. $res = mysql_query($sql) or die(mysql_error());
// 에러 전의 화면 까지만 보이고, 에러 위치는 알 수 없음.
ex>
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 'AuthFlag = 'Y' and ( '20120325' >= mddt and mddt >= '20120129') ) or (supplie' at line 1
4. $res = mysql_query($sql) or die(__FILE__." : Line ".__LINE__."<p>".mysql_error());
// 에러 전의 화면 까지만 보이고, 에러가 발생된 위치를 알 수 있음.
ex>
/home/happyjung/www/print.php : Line 170
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 'AuthFlag = 'Y' and ( '20120325' >= mddt and mddt >= '20120129') ) or (supplie' at line 1
*** 4번이 가장 좋은 방법....php.acp 작성하여 자동완성기능을 이용하면 Very GOOD!!!!
#T=mysql_query
mysql_query($^!) OR die(__FILE__." : Line ".__LINE__."<p>".mysql_error());
인용자료
http://blog.naver.com/wordless/120018111868
댓글목록
등록된 댓글이 없습니다.