일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #JVM
- #Oracle
- IntelliJ
- #자바
- 스프링부트
- 설정
- 플러그인
- 소스코드 맵
- 환경설정
- Spring
- Oracle
- #오라클
- #이클립스
- #java
- mariadb
- CodeGlance
- #자바가상머신
- #eclipse
- Like
- html
- Plugins
- 설치
- log4j
- Eclipse
- 인텔리제이
- log4j2
- 이클립스
- 오라클
- 스프링
- springboot
- Today
- Total
목록데이터베이스/SQL (55)
커피와 개발자
질의 결과에 대해서 한 줄의 데이터를 배열로 가져온다. 【예제】 < ? $con=mysql_connect("localhost","root","root_password"); $db=mysql_select_db("mydb",$con); $query="select * from employees"; $res=mysql_query($query); $fields=mysql_num_fields($res); $row=mysql_fetch_row($res); for($i=0; $i
결과 레코드에서 한 줄의 레코드를 객체 형태로 가져온다. 【예제】 id $row->name $row->tel $row->county $row->state "); ? >
검색 결과에 대한 각 필드 길이를 구한다. 【예제】 < ? $con=mysql_connect("localhost","root","rootpassword"); $db=mysql_select_db("mydb",$con); $query="select * from employees"; $result=mysql_query($query); $row_value=mysql_fetch_array($result); $row_len=mysql_fetch_lengths($result); echo (" id : $row_value[0] len : $row_len[0] name : $row_value[1] len : $row_len[1] tel : $row_value[2] len : $row_len[2] county : $row..
결과 레코드로부터 필드 정보를 객체로 가져온다. 【예제】 name; $table = $row->table; $max_length = $row->max_length; $not_null = $row->not_null; $primary_key = $row->primary_key; $unique_key = ..
MySQL 질의 결과를 한 줄씩 배열 형태로 반환할 때, associative array처럼 결과 줄(row)를 가져온다. mysql_fetch_array()함수에서 둘째 인자만 없다면 똑같다. 【예제】
MySQL 쿼리 결과를 한 줄씩 배열 형태로 반환 【예제】 < ? $con=mysql_connect("localhost","root","root_password"); $db=mysql_select_db("mydb",$con); $query="select * from employees"; $res=mysql_query($query); $fields=mysql_num_fields($res); $row=mysql_fetch_array($res); for($i=0; $i
바로 이전에 수행된 MySQL 연산의 오류 번호를 반환 【예제】