private static string[] autoCompleteWordList = null; public string[] GetCompleteDepart(int count,string sql,string filed) { if (co...
分类:
编程语言 时间:
2014-12-28 12:47:58
阅读次数:
126
理论计算机科学领域最顶级学术会议FOCS和STOC1IEEE Symposium on Foundations of Computer Science(FOCS):http://ieee-focs.org/2 STOC:The Annual ACM Symposium on Theory of Co...
分类:
其他好文 时间:
2014-12-27 19:00:08
阅读次数:
284
html代码: 1 2 3 4 Page Title 5 13 14 15 16 Javascript Base64 Encode & Decodeveinyf@gmail.com2014-12-27 17:4417 18 Base6419 Co...
分类:
编程语言 时间:
2014-12-27 18:52:11
阅读次数:
269
严重: StandardWrapper.Throwableorg.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for transaction; nested exception is java.sql.SQLException: Connections co...
分类:
数据库 时间:
2014-12-27 17:36:41
阅读次数:
324
Update是我们用来升级系统的组件,通过它来更新我们的系统,能够扩展系统的功能,让系统支持更多的软、硬件,解决各种兼容性问题,让系统更安全、更稳定。今天,我们就来分析一下因种种原因导致的更新失败,让大家在更新系统的时候能够畅通无阻。沈阳463整形医院http://www.hengnaya.co.....
Compare two version numbers version1 and version1.
If version1 > version2 return 1, if version1 version2 return -1, otherwise return 0.
You may assume that the version strings are non-empty and co...
分类:
其他好文 时间:
2014-12-27 09:01:59
阅读次数:
150
1关于可重入锁
ReentrantLock是基于AQS实现的可重入的同步工具类,它提供了两种同步器的实现即公平锁FairSync和非公平锁NonfairSync。它提供了一种无条件的、可轮询的、定时的以及可中断的锁获取操作,所有的加锁和解锁都是显式的。tryLock(),tryLock(long
,TimeUnit)分别提供了可轮询的、可定时的锁获取方式。 Lock()提供了无...
分类:
编程语言 时间:
2014-12-26 16:50:58
阅读次数:
283
在删除oracle用户的时候,经常遇到无法删除用户的情况。-- 1. 锁定用户alter user TEST account lock;-- 2. 查看用户的sid和serialselect username,sid,serial# from v$session where username='TE...
分类:
其他好文 时间:
2014-12-26 14:30:52
阅读次数:
146
在我们写程序时,经常会用到单件模式,单件模式是一个类只拥有一个实例对象(或者拥有多个固定数量的实例对象)。下面我给出一个使用多线程的单件模式demo。
package com;
public class Single {
private static Single _instance = null;
private static Object lock = new...
分类:
编程语言 时间:
2014-12-26 13:06:52
阅读次数:
167
$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.st sta...
分类:
其他好文 时间:
2014-12-26 11:03:56
阅读次数:
177