VoteOptionManager.java
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. package com.gforce.gfoa;
  2. import com.gforce.currency.*;
  3. import com.gforce.currency.database.*;
  4. import java.sql.*;
  5. import java.util.*;
  6. /**
  7.  * <p>Title: 吉力科技办公自动化系统</p>
  8.  * <p>Description: 吉力科技办公自动化系统</p>
  9.  * <p>Copyright: 版权所有 2003 (c) 西安吉力科技发展有限公司  Copyright (c) 2003 GForce Sceince & Technology</p>
  10.  * <p>Company: 西安吉力科技发展有限公司 (GForce Sceince & Technology)</p>
  11.  * @author 王江涛
  12.  * @version 1.0
  13.  */
  14. public class VoteOptionManager
  15.     extends RecordManager
  16. {
  17.     public VoteOptionManager()
  18.     {
  19.     }
  20.     protected final static String TableName = "VoteOptionsInfo"; //定义声明本类操作表名称为
  21.     protected final static String IDFieldName = "ID"; //定义声明主键或者可以确定唯一记录的字段名称为“ID”,必须为自增整型
  22.     protected final static String[] NumericFieldsName =        {"VoteID","Times"}; //声明数值型字段名称
  23.     protected final static String[] StringFieldsName =        {"OptionContent"}; //声明字符型字段名称
  24.     protected final static String[] DatetimeFieldsName =        {}; //声明日期时间型字段名称
  25.     protected final static String[] TextFieldsName =        {}; //声明大字符串型字段名称
  26.     /**
  27.      * 根据字段名称获取插入数据时表单元素名称
  28.      * @param strFieldName  字段名称
  29.      * @return  表单素名称
  30.      */
  31.     protected String InsertParament(String strFieldName)
  32.     {
  33.         return "" + strFieldName + ""; //可以根据需要加前缀、后缀
  34.     }
  35.     /**
  36.      * 根据字段名称获取修改数据时表单元素名称
  37.      * @param strFieldName  字段名称
  38.      * @return  表单素名称
  39.      */
  40.     protected String UpdateParament(String strFieldName)
  41.     {
  42.         return "" + strFieldName + ""; //可以根据需要加前缀、后缀
  43.     }
  44.     /**
  45.      * 获取本类操作表名称
  46.      * @return  表名称
  47.      */
  48.     public String getTableName()
  49.     { //获取本类操作表名称
  50.         return TableName;
  51.     }
  52.     protected String getIDFieldName()
  53.     { //获取主键或者可以确定唯一记录的字段名称
  54.         return IDFieldName;
  55.     }
  56.     protected String[] getNumericFieldsName()
  57.     { //获取数值型字段名称
  58.         return NumericFieldsName;
  59.     }
  60.     protected String[] getStringFieldsName()
  61.     { //获取字符型字段名称
  62.         return StringFieldsName;
  63.     }
  64.     protected String[] getDatetimeFieldsName()
  65.     { //获取日期时间型字段名称
  66.         return DatetimeFieldsName;
  67.     }
  68.     protected String[] getTextFieldsName() { //获取大字符串型字段名称
  69.         return TextFieldsName;
  70.     }
  71.     /**
  72.      * 获取所有记录的向量集
  73.      * @return 所有记录的向量集
  74.      */
  75.     public static Vector getAllRecord(int intVoteID)
  76.     {
  77.         Vector vc = new Vector();
  78.         vc = SQLManager.GetResultSet("select * from " + TableName + " where VoteID = "+intVoteID);
  79.         return vc;
  80.     }
  81.     /**
  82.      * 获取指定ID的数据集
  83.      * @param ID 要检索的ID
  84.      * @return 指定ID的数据集
  85.      */
  86.     public static Vector getRecordByID(int intID)
  87.    {
  88.     Vector vc = new Vector();
  89.     vc = SQLManager.GetResultSet("select * from " + TableName + " WHERE ID = "+intID);
  90.     return vc;
  91.    }
  92. }