`
文章列表
import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; import java.util.Vector; public class PersonDefine_ConnectionPool implements Runnable { public String ProductionDB = "axdb_tmp";//給的默認值 private String data ...
  package com.spring.test; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.Driver; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; import java.util.Enumeration; import java.util.Vector; public class ConnectionPool { ...
  Set args = WScript.Arguments Set fs = CreateObject("Scripting.FileSystemObject") If args.Count = 0 Then MsgBox "You called this script directly, no arguments specified!" Else For Each argument In args filename = argument Const ForReading ...
                                                    如何为Adobe Reader加入自己的书签        我们经常用Adobe Reader看电子书,可是每次我们都不可能把一整本书一口气看完,这个时候就有了需要书签的功能。正是出于这一点,我在网上搜索解决之道,发现还真有办法解决的。这个小小的功能是利用JavaScript实现的。在这里再次感叹js的用处之广了。        首先,要先下载bookmark_page.js,点这里下载。其次,就把下载的文件复制到Adobe Reader安装目录,在这里以下面的路径为 ...

开篇第一页

1. While every effort has been made to ensure that there are no errors in this documentation, some errors may nevertheless have crept in. If you do spot any typos or even more serious errors, and you can spare a few cycles during lunch, please do bring the error to the attention of the **(eg:S ...

Extjs扩展骨架结构

Ext.ns("N21.DataComp"); N21.DataComp.MP_PreHeadSetting = Ext.extend(Ext.Panel,{ initComponent:function(){ Ext.apply(this,{ }); N21.DataComp.MP_PreHeadSetting.superclass.initComponent.apply(this,arguments); } ,initEvents:function(){ N21.DataComp.MP_PreHeadSet ...
待写
                                        类型检查(RTTI与反射机制) 1、类型时类型识别(run-timetype identification,RTTI):当之有一个指向对象的引用时,RTTI可以让你找出这个对象的确切类型。 2、Java运行时识别对象 ...
                            Servlet 3.0 新特性概览   1.Servlet、Filter、Listener无需在web.xml中进行配置,可以通过Annotation进行配置; 2.模块化编程,即将各个Servlet模块化,将配置文件也分开配置。 3.Servlet异步处理,应对复杂业务处理; 4.异步Listener,对于异步处理的创建、完成等进行监听; 5. 文件上传API简化;   tomcat 7.0.X 支持Servlet 3.0   一、Annotation支持   1.Servlet  
           SQL Profiling and Analysis   Most RDBMS experts agree that inefficient SQL code is the leading cause of most database performance problems. The challenge for DBAs and developers is to locate the poorly-running SQL code in large and complex systems, and then optimize that code for ...
SQL Server中的临时表和表变量 在SQL Server的性能调优中,有一个不可比面的问题:那就是如何在一段需要长时间的代码或被频繁调用的代码中处理临时数据集?表变量和临时表是两种选择。记得在给一家国内首屈一指的海运公司作SQL Server应用性能评估和调优的时候就看到过大量的临时数据集处理需求,而他们的开发人员就无法确定什么时候用临时表,什么时候用表变量,因此他们就简单的使用了临时表。实际上临时表和表变量都有特定的适用环境。 先卖弄一些基础的知识:
Problem? Whats this syntax useful for : **function(String... args)** Is this same as writing **function(String[] args)** with difference only while invoking this method or is there any other feature involved with it ? Answer The only difference between the ...
hibernate.hbm2ddl.auto参数 hibernate.hbm2ddl.auto参数的作用主要用于:自动创建|更新|验证数据库表结构。如果不是此方面的需求建议set value="none"。 create: 每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。 create-drop : 每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。 update: 
主页: http://www.dnet-ebusiness-suite.com/www/index.php/   (1)User Experience   Desktop like UI in your browser: Powerful and friendly user interface a true rich web GUI. High performance scalable grids, inline editable grids, trees, forms, and other widgets. User interface built with the Extjs li ...
                     如何在web.xml文件中引入其他的xml文件       为了便于以后拆分,于是想到将web.xml文件中的servlet和servlet-mapping能够从web.xml脱离出来,用其他xml文件保存然后在web.xml文件中引入这些文件,就想类似引入struts.config一样。                        具体做法如下:            1.按模块将servelet从web.xml中拷贝出来,放到一个test.xml中,如test.xml中内容如下:
Global site tag (gtag.js) - Google Analytics