JDBC를 사용하여 이와 같은 것을 실행할 수 있는지 궁금합니다.
"SELECT FROM * TABLE;INSERT INTO TABLE;"
네 가능합니다. 내가 아는 한 두 가지 방법이 있습니다. 그들은
- 기본적으로 세미콜론으로 구분 된 여러 쿼리를 허용하도록 데이터베이스 연결 속성을 설정합니다.
- 암시 적 커서를 반환하는 저장 프로 시저를 호출합니다.
다음 예제는 위의 두 가지 가능성을 보여줍니다.
예 1 : (여러 쿼리를 허용하려면) :
연결 요청을 보내는 동안 allowMultiQueries=true
데이터베이스 URL에 연결 속성 을 추가해야합니다 . 이것은 사람들에게 추가 연결 속성이 경우 이미 일부 같은 존재이며 autoReConnect=true
, 대한 등 사용할 수있는 값 allowMultiQueries
속성이 있습니다 true
, false
, yes
,와 no
. 다른 값은 런타임시 SQLException
.
String dbUrl = "jdbc:mysql:///test?allowMultiQueries=true";
이러한 명령이 전달되지 않으면 SQLException
이 발생합니다.
execute( String sql )
쿼리 실행 결과를 가져 오려면 또는 다른 변형 을 사용해야 합니다.
boolean hasMoreResultSets = stmt.execute( multiQuerySqlString );
결과를 반복하고 처리하려면 다음 단계가 필요합니다.
READING_QUERY_RESULTS: // label
while ( hasMoreResultSets || stmt.getUpdateCount() != -1 ) {
if ( hasMoreResultSets ) {
Resultset rs = stmt.getResultSet();
// handle your rs here
} // if has rs
else { // if ddl/dml/...
int queryResult = stmt.getUpdateCount();
if ( queryResult == -1 ) { // no more queries processed
break READING_QUERY_RESULTS;
} // no more queries processed
// handle success, failure, generated keys, etc here
} // if ddl/dml/...
// check to continue in the loop
hasMoreResultSets = stmt.getMoreResults();
} // while results
예 2 : 따라야 할 단계 :
- 하나 이상의
select
및 DML
쿼리를 사용 하여 프로 시저를 만듭니다 .
- 을 사용하여 Java에서 호출하십시오
CallableStatement
.
ResultSet
프로 시저에서 실행 된 여러 s 를 캡처 할 수 있습니다 .
DML 결과는 캡처 할 수 없지만 다른 결과를 발행 select
하여 테이블에서 행이 어떻게 영향을 받는지 확인할 수 있습니다 .
샘플 테이블 및 절차 :
mysql> create table tbl_mq( i int not null auto_increment, name varchar(10), primary key (i) );
Query OK, 0 rows affected (0.16 sec)
mysql> delimiter //
mysql> create procedure multi_query()
-> begin
-> select count(*) as name_count from tbl_mq;
-> insert into tbl_mq( names ) values ( 'ravi' );
-> select last_insert_id();
-> select * from tbl_mq;
-> end;
-> //
Query OK, 0 rows affected (0.02 sec)
mysql> delimiter ;
mysql> call multi_query();
+------------+
| name_count |
+------------+
| 0 |
+------------+
1 row in set (0.00 sec)
+------------------+
| last_insert_id() |
+------------------+
| 3 |
+------------------+
1 row in set (0.00 sec)
+---+------+
| i | name |
+---+------+
| 1 | ravi |
+---+------+
1 row in set (0.00 sec)
Query OK, 0 rows affected (0.00 sec)
Java에서 프로 시저 호출 :
CallableStatement cstmt = con.prepareCall( "call multi_query()" );
boolean hasMoreResultSets = cstmt.execute();
READING_QUERY_RESULTS:
while ( hasMoreResultSets ) {
Resultset rs = stmt.getResultSet();
// handle your rs here
} // while has more rs