- 浏览: 17101 次
- 性别:
- 来自: 武汉
最新评论
文章列表
这几天写存储过程,需要用到多参数传入,传入的参数是给一个select语句的where条件使用的。
但是写的时候遇到一个麻烦的问题,这个where条件的参数必须是number型的,而且使用的是in,也就是多个参数,比如select * from account where ...
利用序列产生主键值。
序列(Sequence)是一种可以被多个用户使用的用于产生一系列唯一数字的数据库对象。序列定义存储在数据字典中,通过提供唯一数值的顺序表来简化程序设计工作,可以使用序列自动产生主键的键值。 ...
/**
* 将数据写入Excel中
*/
public String exportExcel(String filepath,String sheetName,long clientID)throws Exception{
String returnPath = "";
long thistime = new Date().getTime();
OutputStream os;
Connection con = null;
ResultSet rs = null;
PreparedStatement ps = null;
try{ ...
package com.wepull.demo;
import java.io.*;
import java.util.zip.*;
/** *//**
* 对文件或者目录操作的类
* @version 1.0
* @author leno
*/
public class FileUtil {
private static void copy(File source, File target) throws IOException {
File tar = new File(target, source.getName());
...