自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 收藏
  • 关注

原创 什么叫ODBC

 ODBC(OpenDatabaseConnectivity,开放数据库互连)是微软公司开放服务结构(WOSA,WindowsOpenServicesArchitecture)中有关数据库的一个组成部分,它建立了一组规范,并提供了一组对数据库访问的标准API(应用程序编程接口)。这些API利用SQL来完成其大部分任务。ODBC本身也提供了对SQL语言的支持,用户可以直接将SQL语句送给ODBC。...

2011-07-02 16:27:10 153

C#学习资料

http://msdn.microsoft.com/en-us/vcsharp/aa336738.aspx http://www.fincher.org/tips/Languages/csharp.shtml http://www.csharp-examples.net/examples/

2010-03-14 16:04:51 145

过滤字符串中的分号

    <html> <head> <script> function kkbear(){ String.prototype.replaceAll  = function(s1,s2){    return this.replace(new RegExp(s1,"gm"),s2);    }  var kk =document....

2009-08-25 17:37:08 485

flash载入xml不显示中文之谜

新建一层, 按F9,加上this.setMask(mascara);

2009-07-18 00:36:43 187

原创 don net 杂

 <asp:Label ID="id1" runat="server" Text="Welcome" Font-Bold="True"></asp:Label>  <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" T

2009-06-24 17:54:51 104

Struts2 字符串比较正确写法

<s:if test="#user.userSex == 'M'">男 </s:if> 这样写是错误的. 正确的写法如下: <s:if test='#user.userSex == "M"'>男 </s:if> <s:if test='%{#user.userSex == "M"}'&gt

2009-04-15 16:47:02 135

Spring 入门(一)

之前做的项目虽然有用到Spring,但是不是主要负责这块,趁这个机会学一下. 资料:Beginning Spring Framework 2 ISBN: 978-0-470-10161-2  Google下就可以找到PDF 下载书本源码 安装Maven 编译例子源码,下载的例子源码编译时有出错信息,有一个xfire plugin...

2009-03-08 17:25:17 99

Maven学习笔记(一)

资料:   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 -Dgr...

2009-02-28 15:45:23 108

原创 源码阅读工具 CodeLogic 2.1.5

CodeLogic 2.1.5 破解方法 转 安装文件下载 将压缩包解压 将codelogic.jar复制到codelogi的安装目录下的lib目录下 在jdk下运行keygen.class,可以生成一个授权文件,名字为test.lic 从新运行codelogic,在注册时找到你生成的test.lic,即可破解.下载 ...

2009-02-26 23:11:14 565

原创 Java Exception

程序出错时至少需要做的三件事 Notify the user of an error; Save all work; Allow users to gracefully exit the program.  Eception的分类 Throwable Error Exception RuntimeException IOException RuntimeException ...

2009-01-18 14:56:42 111

原创 JavaScript The Definitive Guide Note Part 2

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 ...

2009-01-03 16:47:04 94

原创 JavaScript The Definitive Guide Note Part 1

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      JavaS...

2009-01-01 16:21:20 116

JAVA环境变量

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...

2008-12-11 21:28:24 136

Ubuntu64位安装32位软件

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:48 153

Hibernate beginning

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 con...

2008-11-02 16:58:17 106

免安装版MySQL

1.解压,修改my-small.ini重命名到my.ini. 2.写一个bat执行E:/develop/mysql-5.0.67-win32/bin/mysqld --console

2008-09-13 17:08:09 124

site

http://code.google.com/p/doctype/wiki/Welcome?tm=6

2008-05-17 15:02:04 114

spring in action (1)

用个例子来演示什么是DI(Dependency injection) 1.下载spring-framework-2.0.7,在Eclipse加入两个lib: spring.jar和commons-logging.jar 代码: 1.GreetingService.java 2.GreetingServiceImpl.java 3.hello.xml 4.HelloApp.java java 代码 ...

2007-11-13 23:56:46 111

Java Puzzle

1.Expressive Puzzlers // Odd public static boolean isOdd(int i) {           return i % 2 != 0;       }    public static boolean isOdd(int i) {           return (...

2007-09-15 15:45:28 120

复习复习

数学 离散数学 程序设计: Java(主要) C++/C C# 数据结构: Java版 操作系统: Linux Windows 编译原理 数据库: 理论 MySQL Oracle    ...

2007-07-01 17:41:52 122

Mybook List

UML: Object-Oriented Analysis and Design with Applications.pdf Applying UML and Patterns An Introduction to Object-Oriented Analysis and Design and Iterative Development, Third Edition.chm Reilly_-...

2007-06-30 11:55:36 131

Ebook site

1.Ebookdy       http://www.ebookdy.net/ 2.Netyi              http://www.netyi.net/ 3.itstudy8         http://www.itstudy8.org/

2007-06-30 11:50:39 128

Ajava FrameWork

Smartclient                           http://www.smartclient.com/ Extjs                                       http://extjs.com/ Bindows                                http://www.backbase....

2007-06-30 11:46:15 103

myTool

Visual Paradigm http://www.visual-paradigm.com/ StarUML http://www.staruml.com/  SVN http://subclipse.tigris.org/ js http://www.spket.com/ relo http://relo.csail.mit.edu/update (查看代码辅助)  SVN http://ww...

2007-06-30 11:39:07 199

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除