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
- 플러그인
- log4j
- 인텔리제이
- #Oracle
- 스프링부트
- Eclipse
- Spring
- 환경설정
- 스프링
- #자바
- log4j2
- html
- #JVM
- 이클립스
- #java
- CodeGlance
- #eclipse
- #이클립스
- 설정
- Plugins
- mariadb
- Like
- 설치
- Oracle
- 소스코드 맵
- 오라클
- IntelliJ
- #자바가상머신
- #오라클
- springboot
Archives
- Today
- Total
커피와 개발자
[MySQL API] mysql_list_dbs() 본문
728x90
MySQL 서버에 존재하는 데이터베이스 목록
【예제】
<html><body>
< ?
$con=mysql_connect("localhost","root","root_password");
$show_db=mysql_list_dbs($con);
$num_row=mysql_num_rows($show_db);
for($i=0; $i < $num_row; $i++) {
$db=mysql_result($show_db, $i,0);
echo "$db <br>";
}
? >
</body></html>
【예제】
<html><body>
< ?
$con=mysql_connect("localhost","root","root_password");
$show_db=mysql_list_dbs($con);
$num_row=mysql_num_rows($show_db);
for($i=0; $i < $num_row; $i++) {
$db=mysql_result($show_db, $i,0);
echo "$db <br>";
}
? >
</body></html>
728x90
'데이터베이스 > SQL' 카테고리의 다른 글
[MySQL API] mysql_list_processes() (0) | 2011.03.03 |
---|---|
[MySQL API] mysql_list_fields() (0) | 2011.03.03 |
[MySQL API] mysql_insert_id() (0) | 2011.03.03 |
[MySQL API] mysql_info() (0) | 2011.03.03 |
[MySQL API] mysql_get_server_info() (0) | 2011.03.03 |
Comments