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
- Like
- log4j
- 오라클
- IntelliJ
- 소스코드 맵
- Eclipse
- 스프링부트
- Plugins
- Oracle
- 이클립스
- #자바
- html
- #오라클
- #eclipse
- 설치
- #자바가상머신
- mariadb
- CodeGlance
- log4j2
- springboot
- #이클립스
- 인텔리제이
- 플러그인
- #java
- #JVM
- 스프링
- #Oracle
- Spring
- 환경설정
- 설정
Archives
- Today
- Total
커피와 개발자
[MySQL API] mysql_tablename() 본문
728x90
테이블 이름을 반환
【예제】
<html><body>
< ?
$con=mysql_connect("localhost","root","root_password");
$db=mysql_select_db("mydb",$con);
$result=mysql_list_tables("mydb",$con);
$row_num=mysql_num_rows($result);
for($i=0; $i < $row_num; $i++) {
$table=mysql_tablename($result, $i);
echo "$table <br>";
}
? >
</body></html>
【예제】
<html><body>
< ?
$con=mysql_connect("localhost","root","root_password");
$db=mysql_select_db("mydb",$con);
$result=mysql_list_tables("mydb",$con);
$row_num=mysql_num_rows($result);
for($i=0; $i < $row_num; $i++) {
$table=mysql_tablename($result, $i);
echo "$table <br>";
}
? >
</body></html>
728x90
'데이터베이스 > SQL' 카테고리의 다른 글
[MariaDB] 설치하기 (0) | 2022.10.11 |
---|---|
[MySQL API] mysql_thread_id() (0) | 2011.03.03 |
[MySQL API] mysql_unbuffered_query() (0) | 2011.03.03 |
[MySQL API] mysql_stat() (0) | 2011.03.03 |
[MySQL API] mysql_set_charset() (0) | 2011.03.03 |
Comments