JDBC MySQL快速入门
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDBC MySQL快速入门相关的知识,希望对你有一定的参考价值。
import java.util.logging.Level; import java.util.logging.Logger; // import com.mysql.jdbc.*; import java.sql.*; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author sukanta */ public class Main { try { Class.forName("com.mysql.jdbc.Driver"); Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex); } stmt = con.createStatement(); while (result.next()) result.close(); con.close(); } }
以上是关于JDBC MySQL快速入门的主要内容,如果未能解决你的问题,请参考以下文章