`
dickyzhu
  • 浏览: 107455 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
文章分类
社区版块
存档分类
最新评论
文章列表
DB2客户端连接数据库报错,日志文件db2diag记录的错误信息: 2010-03-17-16.40.15.454000+480 I88807H316         LEVEL: Error PID     : 5480                 TID  : 4648        PROC : QTODBC.exe INSTANCE: DB2                  NODE : 000 FUNCTION: DB2 UDB, common communication, sqlcctcpconnr, probe:110 MESSAGE : DIA3202C The TCP/ ...
<html> <head> <script type="text/javascript"> function collapse(zap){ if(document.getElementById){ var abra=document.getElementById(zap).style; if(abra.display=="block"){ abra.display="none"; }else{ abra.display=" ...
You can upload files from your PC to the Wiki server. Use the Upload a File link in the left menu to get started. You can reference uploaded files with the simple form of the Markup link. For example, if we upload "ProjectPlan.doc" we can create a link like [ProjectPlan.doc]. The Wiki remo ...
<html> <head> <title>_xWin</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style type='text/css'> <!-- body{font-size:12px;} a:visited{text-decoration:none;color:slategray;} a:hover{text-decorat ...
java的对象序列化将那些实现了Serializable接口的对象转换成一个字节序列,并能够在以后将这个字节序列完全恢复为原来的对象。 在对一个Serializable对象进行还原的过程中,没有调用任何构造器,包括默认的构造器。整个对象都是通过从InputStreamuserName中取得数据恢复而来的。 对于Serializable对象,对象完全以它存储的二进制位为基础来构造,而不调用构造器。而对于一个Externalizable对象,所有普通的默认构造器都会被调用,然后调用readExternal()。 将一个对象从它的序列化状态中恢复出来,,必须保证java虚拟机能找到相关的.cla ...
select * from metcareconfig where lcase(section)=lcase('MQConfiguration');
/** * Returns a decrypted string that was originally * encrypted using the MetCareTNGEncryptor utility. * * @param encrypted string * @return decrypted string */ public static String decryptPassword(String input) { StringBuffer output = ...
<!-- --------------------------------------------------------------------- // // Copyright 2001 Chordiant Software. All Rights Reserved. // // File: sessionemanager.htc // // Auther: Ryan Carroll // Created: 13/11/2001 // // Description: Implements a manager for user s ...
<!-- --------------------------------------------------------------------- // // Copyright 2001 Chordiant Software. All Rights Reserved. // // File: desktopmanager.htc // // Auther: Ryan Carroll // Created: 13/11/2001 // // Description: Implements a manager for desktop ...
<!-- --------------------------------------------------------------------- // // Copyright 2001 Chordiant Software. All Rights Reserved. // // File: eventmanager.htc // // Auther: Ryan Carroll // Created: 13/11/2001 // // Description: Implements a manager registering a ...
常见的JAVA程序包括以下类别: *直接在console上运行的类(包括可视化界面的类) *JSP代码类(注:JSP是Servlets类的变型) *Servelets类 *EJB类 *其它不可以直接运行的支持类 这些类文件中,都有可能含有中文字符串,并且常用前三类JAVA程序和用户直接交互,用于输出和输入字符,如:在JSP和Servlet中得到客户端送来的字符,这些字符也包括中文字符。无论这些JAVA类的作用如何,这些JAVA程序的生命周期都是这样的: *编程人员在一定的操作系统上选择一个合适的编辑软件来实现源程序代码并以.java扩展名保存在操作系统中,例如我们在中文win2k中用记事 ...
java是具有动态性,什么是动态性?有个最直观的例子:windows系统的即插即用,支持即插即用的设备可以在系统不重新启动的情况下既可以热把插使用。而java的动态性表现在:我们的程序可以不用全盘的重新编译就能对程序某部 ...
第一类 数据推理: 题目1:393,163,67,29,9,? [问号里应该是5,3,1,11中哪个] 题目2:1,10,26,50,82,? [问号里应该是104,140,146,131中哪个] 题目3:22,44,68,96,128,? [问号里应该是148,156,164,174中哪个] 题目 ...
package test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class MySQLConnection { public static Connection getConnection() throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { String driv ...
1.PreparedStatement是预编译的,对于批量处理可以大大提高效率. 也叫JDBC存储过程 2.使用 Statement 对象。 在对数据库只执行一次性存取的时侯,用 Statement 对象进行处理。PreparedStatement 对象的开销比Statement大,对于一次性操作并不会带来额外的好处。 3.statement每次执行sql语句,相关数据库都要执行sql语句的编译,preparedstatement是预编译得,   preparedstatement支持批处理 4. Code Fragment 1: String updateString = "UPD ...
Global site tag (gtag.js) - Google Analytics