-
JDBC对事物管理的支持查看全部
-
事务的特点查看全部
-
JDBC调用无参存储过程查看全部
-
存储过程代码 和调用查看全部
-
两种连接池的不同查看全部
-
dbcp.properties配置文件内容查看全部
-
dbcp连接池查看全部
-
JDBC对事务的支持查看全部
-
事务的特点查看全部
-
事务的概念查看全部
-
加载配置文件查看全部
-
dbcp连接池要导入的jar包:commons-dbcp2-2.1.1.jar;commons-logging-1.2.jar;commons-pool2-2.4.2.jar查看全部
-
MySQL 有输入输出参数的存储过程实例 1、创建 DELIMITER // DROP PROCEDURE IF EXISTS `test`.`p_getvalue` // CREATE DEFINER=`root`@`localhost` PROCEDURE `p_getvalue`( in id varchar(20),out s varchar(20) ) begin if (length(id)=11) then select 'A_B_C_D' into s; elseif(length(id)=8) then select 'A_B_C' into s; elseif(length(id)=5) then select 'A_B' into s; elseif(length(id)=2) then select 'A' into s; end if; select s; end // DELIMITER ; 2、调用 CALL p_getvalue('11000112',@S)查看全部
-
jdbc调用无参存储过程查看全部
-
事务的概念查看全部
举报
0/150
提交
取消