FinalConstants.java
上传用户:toby828
上传日期:2015-06-26
资源大小:8558k
文件大小:8k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.tool;
  2. //需要调用的SQL语句
  3. public final class FinalConstants {
  4.   //后台管理员表的操作
  5.   public static final String manager_select =
  6.       "select * from tb_manager order by id DESC"; //全部管理员查询
  7.   public static final String manager_selectOne =
  8.       "select * from tb_manager where id=?"; //以数据库流水号为条件查询管理员信息
  9.   public static final String manager_insert =
  10.       "insert into tb_manager values (?,?,?,?)";
  11.   public static final String manager_updatePassword =
  12.       "update tb_manager set password=? where account=?"; //修改管理员密码
  13.   public static final String manager_delete =
  14.       "delete from tb_manager where id=?"; //以数据库流水号为条件删除表中的信息
  15.   public static final String manager_selectPassword =
  16.       "select * from tb_manager where account=?"; //以管理员账号为条件查询管理员信息
  17.   public static final String manager_update =
  18.       "update tb_manager set account=?,password=?,name=? where id=?";
  19.   //超级管理员修改其他管理信息
  20.   //=============================================================================
  21.   //对公告信息表的操作
  22.   public static final String affiche_select =
  23.       "select * from tb_affiche order by id DESC"; //对公告信息全部查询操作
  24.   public static final String affice_insert =
  25.       "insert into tb_affiche values (?,?,getDate())"; //对公告信息的添加
  26.   public static final String affice_update =
  27.       "update tb_affiche set name=?,content=? where id=?"; //以数据库流水号为条件公告信息的修改
  28.   public static final String affice_delete =
  29.       "delete from tb_affiche where id=?"; //以数据库流水号为条件删除表中的信息
  30.   public static final String affice_selectOne =
  31.       "select * from tb_affiche where id=?"; //以数据库流水号为条件查询表中的信息
  32. //===============================================================================
  33.   //对友情连接表的操作
  34.   public static final String link_select =
  35.       "select * from tb_link order by id DESC"; //对全部查询操作
  36.   public static final String link_insert =
  37.       "insert into tb_link values (?,?,?,getDate())"; //添加信息
  38.   public static final String link_delete =
  39.       "delete from tb_link where id=?"; //以数据库流水号为条件删除表中的信息
  40.   public static final String link_selectOne =
  41.       "select * from tb_link where id=?"; //以数据库流水号为条件查询表中的信息
  42.   public static final String link_selectAddress =
  43.       "select * from tb_link where linkAddress=?"; //以网站地址为条件为条件查询表中的信息
  44.   public static final String link_selectName =
  45.       "select * from tb_link where linkName=?"; //以网站名称为条件为条件查询表中的信息
  46.   //================================================================================
  47.   //对商品大类别表的操作
  48.   public static final String big_select =
  49.       "select * from tb_bigType order by id DESC"; //对全部查询操作
  50.   public static final String big_insert =
  51.       "insert into tb_bigType values (?,getDate())"; //添加信息
  52.   public static final String big_delete =
  53.       "delete from tb_bigType where id=?"; //以数据库流水号为条件删除表中的信息
  54.   public static final String big_selectOne =
  55.       "select * from tb_bigType where id=?"; //以数据库流水号为条件查询表中的信息
  56.   public static final String big_update =
  57.       "update tb_bigType set bigName=? where id=?"; //以数据库流水号为条件修改表中的信息
  58.   //================================================================================
  59.   //对商品小类别表的操作
  60.   public static final String small_select =
  61.       "select * from tb_smallType order by id DESC"; //对全部查询操作
  62.   public static final String small_insert =
  63.       "insert into tb_smallType values (?,?,getDate())"; //添加信息
  64.   public static final String small_delete =
  65.       "delete from tb_smallType where id=?"; //以数据库流水号为条件删除表中的信息
  66.   public static final String small_selectOne =
  67.       "select * from tb_smallType where id=?"; //以数据库流水号为条件查询表中的信息
  68.   public static final String small_update =
  69.       "update tb_smallType set bigId=?,smallName=? where id=?"; //以数据库流水号为条件修改表中的信息
  70.   public static final String small_selectBigId =
  71.       "select * from tb_smallType where bigId=?"; //以外键编号为条件查询表中的信息
  72.   //================================================================================
  73.   //对商品表的操作
  74.   public static final String goods_select =
  75.       "select * from tb_goods order by id DESC"; //全部查询操作
  76.   public static final String goods_selectBig =
  77.       "select * from tb_goods where bigId=? order by id DESC"; //以商品的大类别为编号查询信息
  78.   public static final String goods_selectSmall =
  79.       "select * from tb_goods where smallId=? order by id DESC"; //以商品的小类别为条件查询信息
  80.   public static final String goods_selectMark =
  81.       "select * from tb_goods where mark=? order by id DESC"; //以商品是否特价为条件查询信息
  82.   public static final String goods_selectOne =
  83.       "select * from tb_goods where id=? order by id DESC"; //以商品的编号为条件查询信息
  84.   public static final String goods_insert =
  85.       "insert into tb_goods values (?,?,?,?,?,getDate(),?,?,?,?,?)"; //添加信息
  86.   public static final String goods_delete = "delete from tb_goods where id=?"; //删除表中的信息
  87.   public static final String goods_updatePirce =
  88.       "update tb_goods set freePrice=?,mark=? where id=?"; //设置特价价格
  89.   public static final String goods_updateNumber =
  90.       "update tb_goods set number=number+? where id=?";
  91.   //根据商品的ID修改购买数量
  92.   public static final String goods_selectNumber =
  93.       "select * from tb_goods order by number DESC";
  94.   //================================================================================
  95.   //对前台会员表的操作
  96.   public static final String member_select =
  97.       "select * from tb_member order by id DESC"; //全部查询操作
  98.   public static final String member_insert =
  99.       "insert into tb_member values (?,?,?,?,?,?,?,?)"; //添加信息
  100.   public static final String member_delete = "delete from tb_member where id=?"; //删除表中的信息
  101.   public static final String member_update = "update tb_member set name=?,password=?,reallyName=?,age=?,profession=?,email=?,question=?,result=? where id=?"; //以数据库流水号为条件修改信息
  102.   public static final String member_selectOne =
  103.       "select * from tb_member where id=?"; //以数据库流水号为条件查询信息
  104.   public static final String member_selectName =
  105.       "select * from tb_member where name=?"; //以名称为条件查询信息
  106.   public static final String member_selectFind =
  107.       "select * from tb_member where name=? and result=?"; //找回密码用的SQL语句
  108.   public static final String member_updatePassword =
  109.       "update tb_member set password=? where id=?"; //修改会员密码
  110.   //================================================================================
  111.   //对前台会员订货表的操作
  112.   public static final String order_insert =
  113.       "insert into tb_order values (?,?,?,?,?,?,?,?,?,getDate())"; //添加操作
  114.   public static final String order_selectSign =
  115.       "select * from tb_order where sign=? order by id DESC"; //以订货标记为条件查询信息
  116.   public static final String order_select =
  117.       "select * from tb_order order by id DESC";
  118.   //对所有的订单查询
  119.   public static final String order_delete =
  120.       "delete from tb_order where number=?";
  121.   //删除订单操作
  122.   public static final String order_updateSign =
  123.       "update tb_order set sign=1 where number=?";
  124.   //修改出货的标识
  125.   public static final String order_selectNumber =
  126.     "select * from tb_order where number=?";
  127. //单独查询订单
  128. public static final String order_selectHead =
  129.    "select * from tb_order where name=?";
  130. //前台订单查询
  131.   //================================================================================
  132.   //对前台会员订货明仔细表的操作
  133.   public static final String orderDetail_insert =
  134.       "insert into tb_orderDetail values (?,?,?,?)"; //添加操作
  135.   public static final String orderDetail_selectNumber =
  136.       "select * from tb_orderDetail where orderNumber=?"; //以订货编号为条件查询信息
  137.   public static final String orderDetail_delete =
  138.       "delete from tb_orderDetail where orderNumber=?"; //删除订单子表
  139. }