java-jdbc中,怎么在测试类里调用我封装的类和方法?

java-jdbc中,怎么在测试类里调用我封装的类和方法?,第1张

public class test {

main方法{

userinfon user=new userinfo()

实现类 ob =new 实现类()

system.out.println(ob.findByid(user.setId(1))

}

}

如果有输出就说明连接成功

JDBC连接不同数据的写法如下:

1、Oracle8/8i/9i数据库(thin模式)

Class.forName("oracle.jdbc.driver.OracleDriver") 

String url="jdbc:oracle:thin:@localhost:1521:orcl" //orcl为数据库的SID 

String user="test" 

String password="test" 

Connection conn= DriverManager.getConnection(url,user,password)

2、SQL Server2005及以上版本数据库

Class.forName("com.microsoft.sqlserver.SQLServerDriver"); 

String url="jdbc:sqlserver://localhost:1433DatabaseName=mydb" 

//mydb为数据库 

String user="sa" 

String password="" 

Connection conn= DriverManager.getConnection(url,user,password)

3、MySQL数据库

Class.forName("com.mysql.jdbc.Driver") 

String url ="jdbc:mysql://localhost/myDB?

user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1" 

//myDB为数据库名 

Connection conn= DriverManager.getConnection(url)

4、DB2数据库

Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance() 

String url="jdbc:db2://localhost:5000/sample" //sample为你的数据库名 

String user="admin" 

String password="" 

Connection conn= DriverManager.getConnection(url,user,password)

5、Sybase数据库

Class.forName("com.sybase.jdbc.SybDriver").newInstance() 

String url =" jdbc:sybase:Tds:localhost:5007/myDB"//myDB为你的数据库名 

Properties sysProps = System.getProperties() 

SysProps.put("user","userid") 

SysProps.put("password","user_password") 

Connection conn= DriverManager.getConnection(url, SysProps)

6、Informix数据库

Class.forName("com.informix.jdbc.IfxDriver").newInstance() 

String url = "jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver 

user=testuserpassword=testpassword" //myDB为数据库名 

Connection conn= DriverManager.getConnection(url)

7、PostgreSQL数据库

Class.forName("org.postgresql.Driver").newInstance() 

String url ="jdbc:postgresql://localhost/myDB" //myDB为数据库名 

String user="myuser" 

String password="mypassword" 

Connection conn= DriverManager.getConnection(url,user,password)

8、access数据库直连用ODBC的

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") 

String url="jdbc:odbc:Driver={MicroSoft Access Driver 

(*.mdb)}DBQ="+application.getRealPath("/Data/ReportDemo.mdb")

Connection conn = DriverManager.getConnection(url,"","")

Statement stmtNew=conn.createStatement() 

import java.sql.*

public class DataBasePractice {

public static void main(String[] args) {

//声明Connection对象

Connection con

//驱动程序名

String driver = "com.mysql.jdbc.Driver"

//URL指向要访问的数据库名mydata

String url = "jdbc:mysql://localhost:3306/mydata"

//MySQL配置时的用户名

String user = "root"

//MySQL配置时的密码

String password = "root"

//遍历查询结果集

try {

//加载驱动程序

Class.forName(driver)

//1.getConnection()方法,连接MySQL数据库!!

con = DriverManager.getConnection(url,user,password)

if(!con.isClosed())

System.out.println("Succeeded connecting to the Database!")

//2.创建statement类对象,用来执行SQL语句!!

Statement statement = con.createStatement()

//要执行的SQL语句

String sql = "select * from student"

//3.ResultSet类,用来存放获取的结果集!!

ResultSet rs = statement.executeQuery(sql)

System.out.println("-----------------")

System.out.println("执行结果如下所示:")

System.out.println("-----------------")

System.out.println(" 学号" + "\t" + " 姓名")

System.out.println("-----------------")

String name = null

String id = null

while(rs.next()){

//获取stuname这列数据

name = rs.getString("stuname")

//获取stuid这列数据

id = rs.getString("stuid")

//首先使用ISO-8859-1字符集将name解码为字节序列并将结果存储新的字节数组中。

//然后使用GB2312字符集解码指定的字节数组。

name = new String(name.getBytes("ISO-8859-1"),"gb2312")

//输出结果

System.out.println(id + "\t" + name)

}

rs.close()

con.close()

} catch(ClassNotFoundException e) {

//数据库驱动类异常处理

System.out.println("Sorry,can`t find the Driver!")

e.printStackTrace()

} catch(SQLException e) {

//数据库连接失败异常处理

e.printStackTrace()

}catch (Exception e) {

// TODO: handle exception

e.printStackTrace()

}finally{

System.out.println("数据库数据成功获取!!")

}

}

}

在上面while代码段后面添加以下代码段:

String name = null

String id = null

while(rs.next()){

//获取stuname这列数据

name = rs.getString("stuname")

//获取stuid这列数据

id = rs.getString("stuid")

//首先使用ISO-8859-1字符集将name解码为字节序列并将结果存储新的字节数组中。

//然后使用GB2312字符集解码指定的字节数组。

name = new String(name.getBytes("ISO-8859-1"),"gb2312")

//输出结果

System.out.println(id + "\t" + name)

}

PreparedStatement psql

ResultSet res

//预处理添加数据,其中有两个参数--“?”

psql = con.prepareStatement("insert into student values(?,?)")

psql.setInt(1, 8) //设置参数1,创建id为5的数据

psql.setString(2, "xiaogang") //设置参数2,name 为小明

psql.executeUpdate() //执行更新

//预处理更新(修改)数据

psql = con.prepareStatement("update student set stuname = ? where stuid = ?")

psql.setString(1,"xiaowang") //设置参数1,将name改为王五

psql.setInt(2,10) //设置参数2,将id为2的数据做修改

psql.executeUpdate()

//预处理删除数据

psql = con.prepareStatement("delete from student where stuid = ?")

psql.setInt(1, 5)

psql.executeUpdate()

//查询修改数据后student表中的数据

psql = con.prepareStatement("select*from student")

res = psql.executeQuery() //执行预处理sql语句

System.out.println("执行增加、修改、删除后的数据")

while(res.next()){

name = res.getString("stuname")

id = res.getString("stuid")

name = new String(name.getBytes("ISO-8859-1"),"gb2312")

System.out.println(id + "\t" + name)

}

res.close()

psql.close()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7206155.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存