摘要:
java类 package pagination_tag; import java.sql.*; import java.io.Serializable; import javax.servlet.jsp.tagext.TagSupport; import java.sql.ResultSetMetaData; import java.util.*; public class Paginati... 阅读全文
摘要:
oracle存储过程的用法 精典 create table stuInfo ( stuID int primary key, stuName varchar2(20) ) create or replace procedure proc1 is begin insert into stuInfo values(1,'liheng'); end; create or replace p... 阅读全文
摘要:
import java.sql.CallableStatement; import java.sql.Connection; import java.sql.DriverManager; public class JavaOracleProcedure1 { JavaOracleProcedure1()throws Exception { String ... 阅读全文