
但如果想要identity主键的话就只能用 int 定义!!
其他的还有data类的 自己想想也知道那个可以定义时间作为主键!!等等!!自己考虑吧!!
首先你得解析excle,再封装实体,赋值对应的字段,存入数据库,类似下面的这个:
public static void readExcel(String filePath){Products products = new Products()
SqlSession sqlSession = MybatisSqlSessionFactory.getSession()
ProductsMapper productsMapper = sqlSession.getMapper(ProductsMapper.class)
Map<Integer, String> map1 = FileUtil.readfile(filePath, null)
for(int i=0 i < map1.size() i++) {
//获取工作表
Workbook workbook = ExcelUtil.reWorkbook(map1.get(i))
//获取sheet个数
int shNum = ExcelUtil.reExcelSheet(workbook)
for (int num = 0 num < shNum num++) {
//获取行数
int rowNum = ExcelUtil.reExcelSheetRowNum(workbook, num)
if(rowNum != 0)
{
for (int rnum = 0 rnum <= rowNum rnum++) {
//获取列数
int cellNum = ExcelUtil.reExcelSheetCellNum(workbook, num, rnum)
if(cellNum != 0)
{
String value = ExcelUtil.reExcelValue(workbook, num, rnum, 0, false)
products.setProductcode(value)
products.setActivestatus("1")
int code = productsMapper.updateByProductCode(products)
sqlSession.commit()
if(code != 0)
{
logger.info("读取Excel的行数为{},更新数据条数为{}",rnum,code)
}
}
}
}
}
logger.info("读取Excel完成")
}
}
1.查询数据库中的所有数据库名:SELECT Name FROM Master..SysDatabases ORDER BY Name
2.查询某个数据库中所有的表名:
SELECT Name FROM SysObjects Where XType='U' ORDER BY Name
3.查询表结构信息:
1 SELECT (case when a.colorder=1 then d.name else null end) 表名,
2 a.colorder 字段序号,a.name 字段名,
3 (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end) 标识,
4 (case when (SELECT count(*) FROM sysobjects
5 WHERE (name in (SELECT name FROM sysindexes
6 WHERE (id = a.id) AND (indid in
7 (SELECT indid FROM sysindexkeys
8 WHERE (id = a.id) AND (colid in
9 (SELECT colid FROM syscolumns WHERE (id = a.id) AND (name = a.name)))))))
10 AND (xtype = 'PK'))>0 then '√' else '' end) 主键,b.name 类型,a.length 占用字节数,
11 COLUMNPROPERTY(a.id,a.name,'PRECISION') as 长度,
12 isnull(COLUMNPROPERTY(a.id,a.name,'Scale'),0) as 小数位数,(case when a.isnullable=1 then '√'else '' end) 允许空,
13 isnull(e.text,'') 默认值,isnull(g.[value], ' ') AS [说明]
14 FROM syscolumns a
15 left join systypes b on a.xtype=b.xusertype
16 inner join sysobjects d on a.id=d.id and d.xtype='U' and d.name<>'dtproperties'
17 left join syscomments e on a.cdefault=e.id
18 left join sys.extended_properties g on a.id=g.major_id AND a.colid=g.minor_id
19 left join sys.extended_properties f on d.id=f.class and f.minor_id=0
20 where b.name is not null
21 --WHERE d.name='要查询的表' --如果只查询指定表,加上此条件
22 order by a.id,a.colorder
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)