250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- #이클립스
- log4j2
- IntelliJ
- #자바
- Like
- #java
- CodeGlance
- 설정
- 인텔리제이
- html
- #오라클
- 설치
- #자바가상머신
- mariadb
- 스프링
- Plugins
- 환경설정
- #eclipse
- 플러그인
- Spring
- Oracle
- log4j
- 이클립스
- #Oracle
- 소스코드 맵
- 스프링부트
- 오라클
- #JVM
- springboot
- Eclipse
Archives
- Today
- Total
커피와 개발자
[MySQL API] mysql_unbuffered_query() 본문
728x90
SQL 질의를 MySQL에 보내지만,
fetching이나 result row를 buffering하지 않는다.
【예제】
<html><body>
< ?
mysql_connect('localhost','root','root_password') or
die("Could not connect");
mysql_select_db("mydb");
$query="select * from employees";
$result=mysql_unbuffered_query($query);
while ($row=mysql_fetch_assoc($result)) {
echo $row["id"];
echo $row["name"];
echo "<br>";
}
? >
</body></html>
fetching이나 result row를 buffering하지 않는다.
【예제】
<html><body>
< ?
mysql_connect('localhost','root','root_password') or
die("Could not connect");
mysql_select_db("mydb");
$query="select * from employees";
$result=mysql_unbuffered_query($query);
while ($row=mysql_fetch_assoc($result)) {
echo $row["id"];
echo $row["name"];
echo "<br>";
}
? >
</body></html>
728x90
'데이터베이스 > SQL' 카테고리의 다른 글
[MySQL API] mysql_thread_id() (0) | 2011.03.03 |
---|---|
[MySQL API] mysql_tablename() (0) | 2011.03.03 |
[MySQL API] mysql_stat() (0) | 2011.03.03 |
[MySQL API] mysql_set_charset() (0) | 2011.03.03 |
[MySQL API] mysql_result() (0) | 2011.03.03 |
Comments