摘要:
Spring中数据库技术--获得DataSource 一、JNDI获得DataSource(对服务器有一定的依赖) 使用JNDI方法获得DataSource,程序必须运行在支持JNDI服务的容器中,如Tomcat、WebLogic等。1、SpringJNDI数据源配置信息: 1 2 3 ... 阅读全文
摘要:
创建表空间 scott_spacecreate tablespace scott_space datafile 'D:\JavaLife\oracle\scott_data.dbf' size 100m;创建用户 scott/1create user scott identified b... 阅读全文
摘要:
any 和 all不能单独使用 需要与比较符号配合使用>any 大于最小的select * from emp where sal >any (1000,2000,3000) ;all 大于最大的 1000;where 子句 执行顺序为自上而下,从右到左,故将能过滤掉最大数量记录的条件写在whe... 阅读全文
摘要:
Oracle数据库的安装 系统默认创建两个用户:sys 和 system访问oracle: 使用oracle自带的sqlplus(前提条件:在path中添加D:\JavaSoft\Oracle\app\oracle\product\11.2.0\server\bin) window... 阅读全文
摘要:
开启自动提交set autocommit on;关闭自动提交set autocommit off;手动提交commit;查看自动提交状态show autocommit;回滚: 撤销之前一步的操作(提交后的数据无法撤销)rollback;修改表名 rename tt to ttt;添加表字段 ... 阅读全文
摘要:
运算符: 算数运算符: + - * / 连接运算符 || e.g select 'a'||'b'||'c' from dual; 比较运算符 >, =, >=, <, <=, !=, like, between and, is... 阅读全文
摘要:
char 定长字符串类型 长度是固定不变的 GBK编码 默认长度是1 即一个字节 最大长度:2000个字节 char(10) 等价于char(10 byte) 如果存入的值不足10个字节,其他位也被占用 char(10 char) 长度为10个字符,即20个字节 ... 阅读全文
摘要:
1 public class EncryptUtil { 2 public static String getEncrypt(String value , String encrypt_type){ 3 String md5_str = null ; 4 try { 5 //获取一个MD5... 阅读全文