摘要:
import java.sql.*;public class TestJDBC { public static void main(String[] args) { ResultSet rs = null; Statement stmt = null; ... 阅读全文
摘要:
JDBC ResultSet rs = null; Statement stmt = null; Connection conn = null;第一步 : new 一个 Driver , 向我们的 DriverManager 注册。 Class.forName("oracle.jd... 阅读全文
摘要:
http://forge.ow2.org/project/download.php?group_id=97&file_id=9319点击 HTTP download from France 阅读全文
摘要:
create database mydata;use mydata;create table dept(deptno int primary key,dname varchar(14),loc varchar(13));create table emp(empno int primary key,e... 阅读全文
摘要:
Java Learning --others : 数组模拟链表 - 马士兵教的--------------------------------Java 主讲教师 : 马士兵 课程内容 * Java 基础 * 语法基础 * OO * Exception * Array * 基础... 阅读全文
摘要:
import java.util.Scanner;public class P1048 { static double sum = 0; static double num; public static void main(String[] args) { Scann... 阅读全文