자바 연결 데이터베이스 statement 클래스 사용 2011.9 8
4012 단어 statement
이것 은 my sql 데이터 베 이 스 를 연결 하 는 예제 입 니 다.
import java.sql.*;
public class DBHelper {
Statement sql_statement;
Connection conn;
public Connection getConnection() {
try{
// : MySQL JDBC
Class.forName("com.mysql.jdbc.Driver");
// url, MySQL , ; :trade
String url = "jdbc:mysql://localhost:3306/trade";
String username = "root";
String password = "fenghuoedu";
// : MySQL
Connection conn = DriverManager.getConnection(url, username, password);
return conn;
}catch(Exception e){
e.printStackTrace();
}
return null;
}
public boolean insert(String name,String password){
try {
sql_statement.executeUpdate("insert users (name,password) values('" + name
+ "', '" + password + "');");
// sql_statement.executeUpdate("INSERT INTO users VALUES('nihao','21');");
return true;
} catch (SQLException e) {
e.printStackTrace();
return false;
}
}
public void stop() throws SQLException{
//
sql_statement.close();
conn.close();
}
public DBHelper(){
try {
// : con, con Statement sql_statement
conn = getConnection();
sql_statement = conn.createStatement();
// : , ResultSet ,
}catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
new DBHelper();
}
public boolean query(String name,String password) throws Exception {
String query = "select * from users where name = '" + name + "';";
ResultSet result = sql_statement.executeQuery(query);
while (result.next()) {
String mPassword = result.getString("password");
if(mPassword.equals(password)){
return true;
}
//
System.out.println(name + " " + password);
}
return false;
}
// ,
public boolean nameUsed(String name) throws SQLException {
String query = "select * from users where name = '" + name + "';";
ResultSet result = sql_statement.executeQuery(query);
if(result.next()){ // ,
return true;
}
return false;
}
}
여기에 statement 의 몇 가지 방법의 사용 을 말 합 니 다.
1. 데이터 베 이 스 를 조회 할 때 stmt. executeQuery (sql) 를 직접 사용 하여 결 과 를 resultSet 결과 집합 으로 되 돌려 줍 니 다.그리고 결과 집합 을 조작 하면 됩 니 다.
2. 데이터 베 이 스 를 삭 제 했 을 때 stmt. executeUpdate (sql) 를 사용 합 니 다. 주어진 SQL 문 구 를 실행 합 니 다. 이 문 구 는
INSERT
, UPDATE
또는 DELETE
문 구 를 사용 하거나 그 어떠한 내용 의 SQL 문 구 를 되 돌려 주지 않 을 수 있 습 니 다 (예 를 들 어 SQL DDL 문).3. stmt. execute (sql) 반환 값 은 boolean 이 고 첫 번 째 결과 가
ResultSet
대상 이면 되 돌려 줍 니 다 true
.업데이트 계수 나 결과 가 없 으 면 되 돌려 줍 니 다 false( true, false), , 。
검색 작업 을 수행 할 때 다음 과 같이 해 야 합 니 다: if(sql_statement.execute(query)){
ResultSet resultSet = sql_statement.getResultSet();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
테이블 만들기 | SQL버전: SQL Server 2019 여기서, 나는 MSSQL 서버 데이터베이스에 간단한 표를 만드는 방법을 신속하게 개술할 것이다. 창설표는 매우 간단하기 때문에 우리는 문장만 사용할 수 있다.그리고 우리가 원하는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.