我在sqlserver上创建了一个可以在事件探查器上运行的新存储过程,但是当我用eclipse调用该存储过程时,提示找不到该存储过程。如果能给我一点帮助,我将不胜感激 公共类TestID {
let cell = self.tableview?.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomCell
以下是我在sqlserver中创建的存储过程以及所调用的statememt
public static void main(String[] args) {
// TODO Auto-generated method stub
DBUtil db = new DBUtil();
Connection conn = null;
CallableStatement cstmt =null;
try{
conn = db.getConnection();
cstmt = conn.prepareCall("{call dbo.GetSeqVal(?)}");
cstmt.registerOutParameter(1, java.sql.Types.INTEGER);
cstmt.execute();
int count=cstmt.getInt(1);
System.out.println(count);
}catch (Exception e) {
e.printStackTrace();
} finally {
db.closeAll();
}
}
结果将在调用后出现,如果eclipse调用sqlsever存储过程提示怎么办?