- 浏览: 27033 次
- 性别:
- 来自: 珠海
最新评论
-
zhouchenliang1896:
请问你还有破解文件吗,发给我,569226067@qq.com ...
源码阅读工具 CodeLogic 2.1.5
文章列表
ODBC(OpenDatabaseConnectivity,开放数据库互连)是微软公司开放服务结构(WOSA,WindowsOpenServicesArchitecture)中有关数据库的一个组成部分,它建立了一组规范,并提供了一组对数据库访问的标准API(应用程序编程接口)。这些API利用SQL来完成其大部分任务。ODBC本身也提供了对SQL语言的支持,用户可以直接将SQL语句送给ODBC。
http://msdn.microsoft.com/en-us/vcsharp/aa336738.aspx
http://www.fincher.org/tips/Languages/csharp.shtml
http://www.csharp-examples.net/examples/
<html>
<head>
<script>
function kkbear(){
String.prototype.replaceAll = function(s1,s2){
return this.replace(new RegExp(s1,"gm"),s2);
}
var kk =document.getElementById("kkbear").value;
var bear = kk.replaceAll('([;])+', ';');
aler ...
- 2009-08-25 17:37
- 浏览 1109
- 评论(0)
新建一层, 按F9,加上this.setMask(mascara);
- 2009-07-18 00:36
- 浏览 927
- 评论(0)
<asp:Label ID="id1" runat="server" Text="Welcome" Font-Bold="True"></asp:Label>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /></div>
Response.Write("dd ...
- 2009-06-24 17:54
- 浏览 690
- 评论(0)
Struts2 字符串比较正确写法
- 博客分类:
- Struts
<s:if test="#user.userSex == 'M'">男 </s:if>
这样写是错误的.
正确的写法如下:
<s:if test='#user.userSex == "M"'>男 </s:if>
<s:if test='%{#user.userSex == "M"}'>男 </s:if>
- 2009-04-15 16:47
- 浏览 2465
- 评论(0)
之前做的项目虽然有用到Spring,但是不是主要负责这块,趁这个机会学一下.
资料:Beginning Spring Framework 2 ISBN: 978-0-470-10161-2
Google下就可以找到PDF
下载书本源码
安装Maven
- 2009-03-08 17:25
- 浏览 896
- 评论(0)
资料:
Maven: The Definitive Guide
Maven 中文
Maven Project
maven eclipse plugin
两种常用的创建工程方式
1.
mvn archetype:create -DgroupId=com.picksoft.app -DartifactId=my-app
2.
mvn archetype:create -DgroupId=com.picksoft.webapp -DartifactId=myweb
-DarchetypeArtifactId=maven-archetype-webapp
3. 常用的plu ...
- 2009-02-28 15:45
- 浏览 980
- 评论(0)
CodeLogic 2.1.5 破解方法 转
安装文件下载
将压缩包解压
将codelogic.jar复制到codelogi的安装目录下的lib目录下
在jdk下运行keygen.class,可以生成一个授权文件,名字为test.lic
从新运行codelogic,在注册时找到你生成的test.lic,即可破解.下载
- 2009-02-26 23:11
- 浏览 3927
- 评论(1)
程序出错时至少需要做的三件事
Notify the user of an error;
Save all work;
Allow users to gracefully exit the program.
Eception的分类
Throwable
Error
Exception
RuntimeException
IOException
RuntimeException
A bad cast;
An out-of-bounds array access;
A null pointer access.
- 2009-01-18 14:56
- 浏览 889
- 评论(0)
3.13. Primitive Datatype Wrapper Objects
each of the three key primitive datatypes has wrapper
, that cantains the save primitive data value, but it also defines properties and mathods. when you try to access a property or method of the primitive datatypes, JavaScript internally creates a wrapper ob ...
- 2009-01-03 16:47
- 浏览 904
- 评论(0)
Part 1 Core JavaScript
Chapter 2. Lexical Structure
2.1 Character Set
JavaScript programs are written using the Unicode character set.
2.2 Case Sensitivity
2.3. Whitespace and Line Breaks
JavaScript ignores spaces, tabs, and newlines that appear between tokens in programs
2.4. Optional Semicol ...
- 2009-01-01 16:21
- 浏览 852
- 评论(0)
sudo chmod 755 jdkXXXX.bin
sudo ./jdkXXXX.bin
修改/home/kidd/.bashrc 文件
export JAVA_HOME=/home/kidd/develop/java/jdk1.6.0_11
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar:$CLASSPATH
source .bashrc
修改eclipse 的eclipse.ini文件追加
-vm
/home/kidd/develop/ja ...
- 2008-12-11 21:28
- 浏览 825
- 评论(0)
Ubuntu64位安装32位软件
- 博客分类:
- Ubuntu
1.sudo aptitude install ia32-libs*
2.sudo aptitude install getlib
3.sudo aptitude -i --force-architecture linuxqq_v1.0-preview3_i386.deb.
- 2008-11-22 09:22
- 浏览 952
- 评论(0)
resource:
From JavaWorrd Hibernate入門
hibernate-distribution-3.3.1.GAi
1.required lib
antlr-2.7.6.jar ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions.探索Antlr ...
- 2008-11-02 16:58
- 浏览 911
- 评论(0)