일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- rowspan
- phonegap
- GPS
- Struts
- 전자정부프레임워크
- WebLogic
- JSON
- jQuery
- appspresso
- PHP
- iBATIS
- 선택적조인
- sencha touch
- PLSQL
- JDOM
- node.js
- jsr 296
- Eclipse
- 가우스
- oracle
- dock
- MySQL
- Android
- Google Map
- ibsheet
- Spring
- tomcat
- swingx
- MFC
- Ajax
- Today
- Total
목록MySQL (7)
Where The Streets Have No Name
CREATE TABLE `t_contact` ( `customer_id` varchar(100) NOT NULL DEFAULT '', `telno` varchar(100) DEFAULT NULL, PRIMARY KEY (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `t_customer` ( `customer_id` varchar(100) NOT NULL DEFAULT '', `name` varchar(100) DEFAULT NULL, `customer_type` varchar(100) DEFAULT NULL, `sno` varchar(100) DEFAULT NULL, PRIMARY KEY (`customer_id`) ) ENGIN..
context-datasource.xml에서 datasource설정부분입니다.
http://www.joeyrivera.com/2009/using-mysql-stored-procedures-with-php-mysqlmysqlipdo/ Wondering how to use stored procedures with PHP and MySQL? So was I and here’s what I’ve learned. In this tutorial I’ll explain how to use PHP (I’m using 5.2.6) to call MySQL (I’m using 5.0.2) stored procedures using the following database extensions: MySQL - http://us.php.net/manual/en/book.mysql.php MySQLi - ..
http://explainextended.com/2009/07/20/hierarchical-data-in-mysql-parents-and-children-in-one-query/
mybatisConf.xml logMapper.xml select * from apache_log where seq = #{id} DBFactory.java package mybatis; import java.io.IOException; import java.io.Reader; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; public class DBFactory { private static DBFacto..
http://dev.mysql.com/tech-resources/articles/hierarchical-data.html mysql
■ CREATE DATABASE database_name (데이타베이스이름) 데이타 베이스 이름은 문자와 숫자, '_' 를 포함하는 32 byte 이내로 작성한다. 이 명령은 새로운 데이타베이스 공간을 생성시킨다. ■ DROP DATABASE database_name 존재하는 데이타베이스를 제거한다. 데이타베이스 상에 존재하는 테이블도 모두 삭제 되므로 매우 조심하여 작업하여야 한다. 한번 삭제되면 복구는 불가능 하므로 데이타 베이스 상의 테이블과 데이타가 모두 백업이 되었는지 확인하고 작업한다. ■ CREATE TABLE table_name ( create_definition,... ) 데이타베이스 상에 테이블을 생성시키는 명령이다. 자세한 옵션은 다음과 같다. create_definition: col..