摘要:
通过 IDENTITY 来设置 参数有2个,一个是“初始值” 一个是“增量”。默认情况下 INSERT 语句中,不能对 IDENTITY 的字段进行赋值。create table web_product_info ( pid int IDENTITY(1, 1) not null, code_id char(9) not null, product_name varchar(200) not null, Info5 varcha... 阅读全文
摘要:
package xxxxxx.manage.importexcel;import java.io.File;import java.util.HashMap;import java.util.Map;import java.util.logging.Logger;import net.sf.json.JSONObject;import xxxxxx.supp.ACT_Common;/** * * Title:excel数据导入 * * * Description:excel数据导入 * * * Copyright: Copyright (c) 2013 * * * Company... 阅读全文
摘要:
package XXXXX.manage.importexcel;import java.beans.IntrospectionException;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStreamReader;import java.io.UnsupportedEncodingException;impo 阅读全文
摘要:
package xxxxxxx.manage.importexcel;import java.util.Map;import java.util.logging.Logger;import xxxxxxx.cache.UserSession;import xxxxxxx.manage.accounttype.DAO_AccountType;import xxxxxxx.manage.dict.DAO_Dict;import xxxxxxx.supp.BN_Row;import xxxxxxx.util.DateUtil;import xxxxxxx.util.StringUtil;public 阅读全文
摘要:
1、BN_ImportExcel.java 对应xml主节点属性package XXXXX.manage.importexcel;import java.io.Serializable;import java.util.HashMap;import java.util.Map;public class BN_ImportExcel implements Serializable { /** * */ private static final long serialVersionUID = -3837515724164300087L; private String name; privat... 阅读全文
摘要:
主要应用技术:poi + betwixt + reflect一、实际应用过程1.创建与目标表结构一样,表名为‘{目标表名}_import’的临时表;2.创建用于存储导入问题数据的表:t_import_error (只需创建一张);Name Code Data Type Length Precision Mandatory Primary Identifier Displayed Domain问题id op_id VA36 36 TRUE TRUE TRUE 问题表名 op_name VA50 50 TRUE FALSE TRUE 所在行号 row_no I TRUE FALSE TRU... 阅读全文