package NEW;
import ;
import ;
import ;
import ;
import ;
public class Database {
public static void main(String[] args) throws SQLException {
Database data=new Database();
();
("连接成功");
}
public static Connection getConn() throws SQLException {
//连接类,得到和目标数据库连接的对象
Connection con=null;
//加载驱动
try {
("");
//加载驱动类
con = ("jdbc:mysql://localhost/stu",
"root", "123");
//获取与目标数据库的连接,参数("jdbc:mysql://localhost/数据库名","root","数据库密码";
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
();
}
return con;
}
public static void search() throws SQLException
{
Connection con=getConn();//与目标数据库连接的对象
ResultSet set=null;
PreparedStatement prepar=("select *from student");
//把sql语句发送到数据库,得到预编译类的对象,这句话是选择该student表里的所有数据
set=();
//将得到的数据库响应的查询结果存放在ResultSet对象中
while(())
{
(("id"));//输出对应表内容,“表的列名”
(" "+("name"));
(" "+("age"));
}
}
}
上面显示了连接和获取数据库内容的方法;
下面是在cmd里对数据库的一些操作,暂时只用了这些,以后学别的再来更新
show databases;展示所有的数据库
use 数据库名;使用数据库,可以做修改
show tables;展示当前库所有的表名
describe 表名;展示当前表里的表头
select *from 表名;展示所有的信息
select user,host from ;用户名
在数据库里添加表
creat table student(
id int NOT NULL auto_increment,
name vachar(200),
age vachar(200),
primary key(id)
);
insert into 表名 values('','','');插入
选择:select * from table1 where 范围
插入:insert into table1(field1,field2) values(value1,value2)
删除:delete from table1 where 范围