- 浏览: 1155164 次
- 性别:
- 来自: 北京
-
最新评论
-
a535114641:
LZ你好, 用了这个方法后子页面里的JS方法就全不能用了呀
页面局部刷新的两种方式:form+iframe 和 ajax -
di1984HIT:
学习了,真不错,做个记号啊
Machine Learning -
赵师傅临死前:
我一台老机器,myeclipse9 + FB3.5 可以正常使 ...
myeclipse 10 安装 flash builder 4.6 -
Wu_Jiang:
触发时间在将来的某个时间 但是第一次触发的时间超出了失效时间, ...
Based on configured schedule, the given trigger will never fire. -
cylove007:
找了好久,顶你
Editable Select 可编辑select
文章列表
ThreadLocal 可以理解成 Current Thread Context 或 Current Thread Local Variable。
http://www.appneta.com/blog/introduction-to-javas-threadlocal-storage/
http://javarevisited.blogspot.com/2012/05/how-to-use-threadlocal-in-java-benefits.html引用ThreadLocal in Java is another way to achieve thread-safety apa ...
Ubuntu 12.04 下安装配置 JDK:
http://www.wikihow.com/Install-Oracle-Java-JDK-on-Ubuntu-Linux
http://blog.csdn.net/yang_hui1986527/article/details/6677450引用~/.bashrc 中:
#JDK
export JAVA_HOME=/home/lee/Dev/jdk/jdk1.7.0_07
export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME ...
类:一类对象的模板
对象:类的一个具体实例
面向对象的三个基本特征是:封装、继承、多态。
继承:
http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html
A subclass inherits all the members (fields, methods, and nested classes) from its superclass. Constructors are not members, so they are not inherited by subclasses, but the construc ...
Oracle® Database SQL Reference 10g Release 2 (10.2) -> ROWNUM Pseudocolumn:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/pseudocolumns009.htm引用For each row returned by a query, the ROWNUM pseudocolumn returns a number indicating the order in which Oracle selects the row from a ta ...
SQL Server 2000/2005 分页SQL:
http://www.cnblogs.com/anjou/archive/2007/10/17/926944.html
其他文章:
使用2005的row_number() 函数做分页:
http://www.ljnid.cn/?id=145
SQL Server 存储过程的分页方案比拼:
http://blog.csdn.net/lihonggen0/archive/2004/09/14/103511.aspx
- 2009-07-27 14:43
- 浏览 1337
- 评论(0)
/**
* 计算指定的字符串中出现某一字符串的次数
* @author lixg
*
*/
public class AccountString {
public static void main(String[] args) {
String str = new String("rrjavastingjavaabstractjavasunioexcptionjavayy");
String toFindString = "java";
int count = 0;
// System.out.print ...
- 2009-07-26 21:06
- 浏览 1594
- 评论(0)
java.sql.SQLException: I/O Error: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property.
at net.sourceforge.jtds.jdbc.TdsCore.login(TdsCore.java:611)
at net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:331)
at net.sourceforge.jtds.jdb ...
- 2009-07-23 09:37
- 浏览 4445
- 评论(0)
同时count用户表中的男人和女人
- 博客分类:
- Oracle
用户表中sex字段,1表示男,0表示女。要实现图一效果。
分别用decode和case when then else end实现,如图二。
- 2009-07-18 17:20
- 浏览 1127
- 评论(0)
http://blog.chinaunix.net/u2/73123/showart_1357755.html
- 2009-07-18 17:00
- 浏览 1896
- 评论(0)
http://www.itpub.net/viewthread.php?tid=1017026
- 2009-07-18 16:37
- 浏览 835
- 评论(0)
Oracle中decode函数用法
http://blog.csdn.net/one132/archive/2009/07/06/4325165.aspx
- 2009-07-18 16:36
- 浏览 1121
- 评论(0)
SQL中的case when...then...else...end举例:
比较2列的值选择最大的一列输出:
table a
(
no1 number,
no2 number
)
SELECT
a.no1,a.no2,
(
CASE
WHEN a.no1 < a.no2
THEN a.no2
ELSE a.no1
END
) AS MaxNumber ...
- 2009-07-17 17:33
- 浏览 3968
- 评论(0)
MS Sql server 表复制:
http://blog.csdn.net/feng19821209/archive/2006/06/08/779356.aspx
- 2009-07-16 22:14
- 浏览 1339
- 评论(0)
在使用sqlserver数据库做一次性删除大量同数据(几万条)的时候抛出异常如下:
消息 9002,级别 17,状态 4,第 1 行
数据库 'lylearnnet_syn' 的事务日志已满。若要查明无法重用日志中的空间的原因,请参阅 sys.databases 中的 log_reuse_wait_desc 列。
对库lylearnnet_syn的日志执行清空(DUMP TRANSACTION lylearnnet_syn WITH NO_LOG)或截断(BACKUP LOG lylearnnet_syn WITH NO_LOG)操作后该问题依然存在。
翻阅了一些资料总结了解决的办 ...
- 2009-07-16 13:02
- 浏览 6704
- 评论(0)
漫谈SQL Server中的标识列
http://blog.csdn.net/jhlxge/archive/2008/07/31/2742969.aspx
SQL SERVER 中identity用法:
在数据库中, 常用的一个流水编号通常会使用 identity 栏位来进行设置, 这种编号的好处是一定不会重覆, 而且一定是唯一的, 这对table ...
- 2009-07-15 17:27
- 浏览 11504
- 评论(0)