package Dao;
import java.sql.*;
public class News {
	private Connection con=null;
	private Statement st=null;
	private PreparedStatement ps=null;
	private ResultSet rs=null;
	public final static String driver="com.mysql.jdbc.Driver";
	public final static String url="jdbc:mysql://localhost:3306/News";
	public final static String name="root";
	public final static String password="123456";
	
	//建立数据库连接
	public void getConn(){
		try{
			Class.forName(driver); //加载驱动类
			con=DriverManager.getConnection(url, name, password);
			System.out.println("数据库已连接");
		}
		catch (ClassNotFoundException e) {
			// TODO: handle exception
			System.out.println("驱动类未找到"+e.toString());
		}
		catch (SQLException e) {
			// TODO: handle exception
			System.out.println("连接对象创建失败"+e.toString());
		}
	}
	
	//发布新闻
	 public int insertUser(String title,String nid,String content,String time){
		 int i=0;
		 String sql="insert into news(title,nid,content,time) values (?,?,?,?)";
		 try{
			 ps=con.prepareStatement(sql);
			 ps.setString(1, title);
			 ps.setString(2, nid);
			 ps.setString(3, content);
			 ps.setString(4, time);
			 i=ps.executeUpdate();
		 }
		 catch (SQLException e) {
			// TODO: handle exception
			 e.printStackTrace();
		}
		 return i;
	 }
	 
	 //查询新闻编号
	 public boolean findID(int uid){
		 boolean flag=false;
		 String sql="select * from news where uid=?";
		 try{
			 ps=con.prepareStatement(sql);
			 ps.setInt(1,uid);
			 rs=ps.executeQuery();
			 if(rs.next()){
				 System.out.println("uid存在");
				 flag=true;
			 }
			 else{
				 System.out.println("uid不存在");
				 flag=false;
			 }
		 }
		 catch (SQLException e) {
				// TODO: handle exception
				 e.printStackTrace();
			}
			 return flag;
		   
	 }
	 
	 //查询新闻所有信息
	 public ResultSet findAll(){
		 String sql="select * from news";
		 try{
			 st=con.createStatement();
			 rs=st.executeQuery(sql);
		 }
		 catch (SQLException e) {
			// TODO: handle exception
			 e.printStackTrace();
		}
		 return rs;
	 }
	 
	 //删除新闻
	 public void delete(int uid){
		 String sql="delete from news where uid=? ";
		 try{
			 ps=con.prepareStatement(sql);
			 ps.setInt(1,uid);
			 ps.executeUpdate();		 
		 }
		 catch (SQLException e) {
			// TODO: handle exception
			 e.printStackTrace();
		} 
	 }
	 
	 //修改新闻
	 public void Update(int uid,String title,String nid,String content,String time){
		 String sql="update news set title=?,nid=?,content=?,time=? where uid=?";
		 try{
			 ps=con.prepareStatement(sql);
			 ps.setString(1, title);
			 ps.setString(2, nid);
			 ps.setString(3, content);
			 ps.setString(4, time);
			 ps.setInt(5, uid);
			 ps.executeUpdate(); 
		 }
		 catch (SQLException e) {
			// TODO: handle exception
			 e.printStackTrace();
		} 
	 }
}
最近下载更多
Waner111  LV1 1月4日
asddwh  LV12 2023年12月26日
zj20020510  LV5 2023年9月24日
monolog  LV4 2023年4月18日
whq12138  LV3 2023年1月6日
北方菜  LV11 2022年12月30日
1721281527  LV2 2022年12月27日
include  LV8 2022年12月22日
1379585889  LV11 2022年12月13日
13169178967  LV2 2022年12月11日
最近浏览更多
op123129 4月14日
暂无贡献等级
Waner111  LV1 1月4日
asddwh  LV12 2023年12月26日
微信网友_6786215447367680  LV4 2023年12月23日
颜菜菜  LV2 2023年12月23日
微信网友_6783897029726208 2023年12月18日
暂无贡献等级
lf3203119970 2023年11月30日
暂无贡献等级
蹇金金  LV7 2023年11月6日
graceful 2023年10月18日
暂无贡献等级
微信网友_6680567232876544  LV8 2023年10月11日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友