`
lhgyy00
  • 浏览: 144374 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
select distinct dempno ,job from emp; select * from emp;select * from emp where deptno=10;select * from emp wehre ename='clack';select * from emp where sal>1500;selece ename,sal from emp where deptno<>10; select * from emp where sal between 800 and 1500;select * from emp where comm = null; ...

数据库

--字符函数(转换函数,字符操作函数)注意:1.orcale中允许函数没有参数 2.函数分为:单行函数和多行函数(聚合函数,平均,统计,求和)详细:1.字符函数:字符操纵函数(concat,substr,length,instr:取字符的位置,lpad:字符串按某种模式显示),转换函数(lower,upper,initcap:讲一个单词的首字母转换成大写)例子:function resultselect lower('aAa apple') as 转换为小写 from dual;select upper('aAa apple') as 转换为大写 from dual;select in ...
java代码: package com.test0117; import java.util.concurrent.TimeUnit; import java.util.concurrent.locks.ReentrantLock; public class AttemptLocking { private ReentrantLock lock = new ReentrantLock(); public void untimed(){ boolean captured = lock.tryLock(); try{ System.out.println( ...
spring框架的最小集合: (1) spring-config.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframewo ...
写了一些练习,分享下。。
写了一段程序,关于线程的优先级的,但是跑完的结果却是和thinking in java 上的结论却不怎么一样,有高手经过,指点下小弟,谢谢: package classes; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class SimplePriorities implements Runnable{ private int countDown=5; private volatile double d; private i ...
1.线程池有三个:SingleThreadExecutor--根据开始的顺序,顺序执行 newCachedThreadPool--动态分配 newFixedThreadPool--一次性创建出,所要创建的总的个数,当newCachedThreadPool有问题的时候使用 2.实现Callable<String>能够使用线程而获得返回值,用ExecutorService的submit方法,能够产生Future方法。   isDone方法查询是否完成,get方法取值 3.线程的异常不能够跨线程,传播回main 学习的时候写了几个小练习,在附件中
在这里找到了,JBMP的一些资源的连接,记录下(备忘) http://www.blogjava.net/xyz20003/archive/2009/07/11/286336.html
我的电脑上一直运行着eclipse 3.4 今天在看JPBM的时候下了一个eclpise 3.5结果发现启动的时候,跳出一个对话框,是一些启动参数,点击确定之后就关闭了,没有启动。。 解决办法: (1)删除eclipse目录下的eclipse.ini (2)Eclipse又能启动工作了 原理不明白。。 看了网上的一些资料有的说把分配内存的参数改小一点也可以,没试过
下面是jQuery的下载地址: jquery-1.3.2.min(压缩版)有55.9K http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js&downloadBtn=%3CSPAN%3EDownload%3C%2FSPAN%3E http://code.google.com/p/jqueryjs/downloads/list jquery的官方是: http://jquery.com/ 中文版jquery框架在线帮助地址: http://www.okajax.com/b ...
jQuery.fn.foobar=function(){ //do something } /**可选,创建帮助方法**/ jQuery.fooBar={ height:5, calculateBar =function(){}, checkDependencies = function(){} } /**可选:创建可选的参数**/ jQuery.fn.foobar = function(options){ var settings = { value:5, name:'pete', bar:655 }; if(options){ ...
/** $(document).ready(function() { /* //$("#orderedlist").addClass("red");//背景色变红 //$("#orderedlist>li").addClass("blue");//字变蓝 $("#orderedlist li:last").hover(function(){//hover是获得焦点的意思 $(this).addClass(&qu ...
终于发现了一个好用的cmd,截个图纪念一下 下载地址:http://www.powercmd.com/  
1. document.write( " "); 输出语句 [color=darkred][/color]2.JS中的注释为// 3.传统的HTML文档顺序是:document- >html- >(head,body) 4.一个浏览器窗口中的DOM顺序是:window- >(navigator,screen,history,location,document) 5.得到表单中元素的名称和值:document.getElementById( "表单中元素的ID號 ").name(或value) 6.一个小写转大写的JS: do ...
grid.getSelectionModel().selectFirstRow();//定位到第一行   grid.getSelectionModel().selectLastRow() ;//定位到最后一行   grid.getView().focusRow(i);//定位到指定行  
Global site tag (gtag.js) - Google Analytics