⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attention.java

📁 刊物文章管理系统 刊物文章管理系统
💻 JAVA
字号:

package com.netshop;

import java.sql.*;
import java.text.*;
import com.netshop.*;

public class attention extends executeWay
{
   
    
    public long ID;  
    public long goodsID;   
    public long userID; 
    public int tag;    
    private String strSql;
   
    private SimpleDateFormat dateFormatter;
    
    
     public attention()
    {
        super();
       
        ID=0;            
        goodsID=0;          	      
	    userID=0;                            	
    	tag=0;		
   		strSql="";                
   }
   
   public boolean add()
   {
        
        strSql="insert into attention ";
        strSql=strSql + "(";     
        strSql=strSql + "goodsID,";
        strSql=strSql + "userID,";   
        strSql=strSql + "tag";       
        strSql=strSql + ") ";      
		strSql=strSql + "values(";	
		strSql=strSql + "'" + goodsID + "',";
		strSql=strSql + "'" + userID + "',";	
		strSql=strSql + "'" + tag + "'";
		strSql=strSql + ")";

		boolean isAdd = super.exeSqlUpdate(strSql);		
		return isAdd;
   }

   public boolean delete(String webID)
   {
        
        strSql="delete from `attention` where ID='";
        strSql=strSql + webID + "'";       
        boolean isDelete = super.exeSqlUpdate(strSql);
         
		return isDelete;

   }
   
 
   public ResultSet showAllAttentions(String userID)
   {
    	strSql="select * from `attention` where tag!=-1 and userID='"+userID+"'";
        ResultSet rs = null;
              
        try
		{
			rs = super.exeSqlQuery(strSql);   			           
           
		}
		catch(Exception ex)
		{
			System.out.println(ex.toString());            
           
		}
		return rs;
        
   }
   
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -