데이터베이스jdbc_메모리 프로세스 호출 + 자동 생성 키 가져오기
package cn.itcast.demo;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import org.junit.Test;
import cn.itcast.utils.JdbcUtils;
public class demo4 {
/*
, !
: , ,
id, !
mysql -uroot -proot
set character_set_client=gb2312;
set character_set_results=gb2312;
use day15;
create table test(
id int primary key auto_increment,
name varchar(40) not null
)character set utf8 collate utf8_general_ci;
show tables;
*/
@Test
public void getGeneratedKeys(){
//SQL (sql_u)
Connection conn = null;
PreparedStatement st = null;
ResultSet rs = null;
try {
conn = JdbcUtils.getConnection();
String sql = "insert into test(name) values(?)";
st = conn.prepareStatement(sql);
st.setString(1, " ");
st.executeUpdate();
// :
rs=st.getGeneratedKeys();
if (rs.next()) {
// , !? id !
System.out.println(rs.getInt("id"));
}
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
JdbcUtils.release(conn, st, rs);
}
}
}
메모리 프로세스 호출
package cn.itcast.demo;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Types;
import org.junit.Test;
import cn.itcast.exception.DaoException;
import cn.itcast.utils.JdbcUtils;
public class demo5 {
/*
! , hibernate
oracle !
1, mysql ( )!
'pre_eminent:'
delimiter ^
create procedure demo5(IN inputParam VARCHAR(255),INOUT inoutParam VARCHAR(255))
BEGIN
SELECT CONCAT('pre_eminent:',inputParam) into inoutParam;
END^
delimiter ;
2,drop procedure demo5 */
@Test
public void sqlProcedure(){
//SQL (sql_procedure)
Connection conn = null;
CallableStatement st = null;
ResultSet rs = null;
try {
conn = JdbcUtils.getConnection();
/* demo5 ( )!
* call SQL ! !
* 1 , 2 !*/
String sql = "{call demo5(?,?)}";
st = conn.prepareCall(sql);
// ! 2 sqlType
st.setString(1, "nice to meet you!");
// , java.sql.Types !
st.registerOutParameter(2, Types.VARCHAR);
// sql
st.execute();
// 2 , inoutParam !
System.out.println(st.getString(2));
} catch (Exception e) {
throw new DaoException(e);
} finally {
JdbcUtils.release(conn, st, rs);
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SQLite의 query로 망설임이것은 내가 처음 안드로이드 응용 프로그램 개발에서 망설이고, 그 후 해결 된 방법을 비망록으로 철자하고 있습니다. java에서 SQLite를 이용한 애플리케이션을 작성하는 동안 EditText에 입력된 item이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.