Java教程

ATM机案例3之数据库交互实现(一)

本文主要是介绍ATM机案例3之数据库交互实现(一),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

ATM机案例3之数据库交互实现(一)

一、表格数据建立

t_account(帐户表)

image

t_bank(银行表)

image

t_bank_card(银行_银行卡关联表)

image

t_bank_account(银行_账户关联表)

image

二、DBUtils(jdbc连接工具类)

在DBUtils类中完成以下3个方法:

点击查看代码
	//将装载驱动的方法封装起来,提高代码可用性
    public static Connection getConnection() {
        Connection connection = null;
        try {
            Class.forName("oracle.jdbc.OracleDriver");
            connection = DriverManager.getConnection(
                    "jdbc:oracle:thin:@localhost:1521:XE", "frank", "frank");
	//getconnection方法的三个参数分别对应url,数据库用户名,数据库密码
        } catch (Exception e) {
            e.printStackTrace();
        }
        return connection;
    }
点击查看代码
	//将关闭数据库连接的方法封装起来,以便复用
    public static void close(ResultSet resultSet, Statement statement, Connection connection) {
	//分别对三个对象做判断,非空时进行关闭的操作
        if (resultSet != null) {
            try {
                resultSet.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

        if (statement != null) {
            try {
                statement.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

        if (connection != null) {
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }
点击查看代码
	//对于只有两个对象的情况单独操作,将ResultSet对象手动赋予空值,
	//调用上面的同名close方法
    public static void close(Statement statement, Connection connection) {
        close(null, statement, connection);
    }

未完。。

这篇关于ATM机案例3之数据库交互实现(一)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!