搜索资源列表
快速数学表达式计算的动态连接库.zip
- 这是一个关于数学表达式的算法。
tsunami-0[1].1.1.tar
- Tsunami Bench是一个连接Apache Bench的Gnome/GTK前端。它是作者的第一个Gnome/GTK应用程序,作者希望最终用更好的功能来取代AB。-Tsunami Bench is a link Apache Bench of the Gnome / GTK front end. It is the first author of a Gnome / GTK application, the authors hope
Java连接各种数据库的实例
- 这是一个Java连接各种数据库的实例-This is a Java database connectivity various examples
一个连接池的例子(来自JIVE)(1)
- 一个连接池的例子(来自JIVE)-a connection pool example (from JIVE)
tomcat连接池配置
- 建设一个网站,会遇到多人连接服务器的问题.如果用tomcat作为JAVA服务器,可以写一个连接池程序.但最新的5.0.16tomcat已经支持连接池配置,我个文档就是讲如何设置的,花了一天功夫!-building a website, will face many problems connecting to servers. If tomcat as a Java server, can write a connection pool
DELPHI写的一个获取网页中全部连接和图片地址的程序
- DELPHI写的一个获取网页中全部连接和图片地址的程序
监控拨号网络连接
- 一个使用VC临控拨号网络连接-a temporary use dial-up network connection control
一个连接池的例子(来自JIVE)(1)
- 一个连接池的例子(来自JIVE)-a connection pool example (from JIVE)
VC简单实现动态连接库
- VC实现动态连接库.设计两个动态连接库,分别保存一个字符串资源的两种语言形式的变量,如IDS_MYSTR的英文为"Welcome to BeiJing",中文为"欢迎来到北京".-VC Dynamic Link Library. Design of two dynamic link libraries, the preservation of a string of resources in both languages form of
pubconn
- 一个连接池源码,非常好用!创建一个cf,然后cf.getconn()就可以得到空闲连接,可以设置最大最小连接数-a connection pool source, a very handy! Create an cf, then cf.getconn () can be idle connections, to set the maximum number of the smallest link
tomcat连接池配置
- 建设一个网站,会遇到多人连接服务器的问题.如果用tomcat作为JAVA服务器,可以写一个连接池程序.但最新的5.0.16tomcat已经支持连接池配置,我个文档就是讲如何设置的,花了一天功夫!-building a website, will face many problems connecting to servers. If tomcat as a Java server, can write a connection pool
数据库连接类库实例
- 这是一个用c#编写的用C#实现数据库连接类库实例,可以看看的-this implementing database connecting with C# is written in c#,please take a look
在动态连接库内封装应用程序框架cool
- 实现方法: 用MFC的程序向导生成一个常规DLL,在常规DLL内有一派生自CWinApp的实例,再用MFC的程序向导生成一个MFC EXE应用程序,把MFC EXE应用程序中 CAppView,CMainfr a me,CAppDocument的文挡和RES目录下的资源拷贝到常规DLL项目中,添加到项目中,编译生成一DLL,在另外一个WIN32应用程序中,启动一线程,在线程函数中显式装载该DLL,取的该DLL内的当前线程, CWinTh
Java 的JDBC 数据库连接池实现方法
- J2EE 程序员一般都有现成的应用服务器所带的JDBC 数据库连接池,不过对于开发一般的 Java Application 、 Applet 或者 JSP、velocity 时,我们可用的JDBC 数据库连接池并不多,并且一般性能都不好。我们可以自己写一个JDBC 数据库连接池。-J2EE programmers tend to have a ready-made application server release the JDBC
serverconnectpool
- 当我们在程序中启动了一个server,这个server需要跟另一个server(比如建立在老系统上的老的c程序)之间通讯,为了增加效率需要建立一个连接池的时候不妨考虑下我的解决方案-when we launched the proceedings a server, the server needs with those of another server (such as the establishment of the old sy
ConnectPool
- 用java编写的一个连接池的程序,效果不错,可以提高对数据库管理的效率-Using java to prepare a connection pool of the procedure, good results can improve the efficiency of database management
ConnPool
- 数据库连接池的管理,只有当用户真正需要进行数据库操作时,系统才从连接池申请一个连接,数据库操作完毕,连接立即释放到连接池中,以供其他用户使用。这样,不仅大大提高了数据库连接的使用效率,使得大量用户可以共享较少的数据库连接,而且省去了建立连接的时间。-Database connection pool management, and only when the user genuine need to carry out database
tcp
- 一个简单网络通信系统,实现通信双方的消息收发,主要包括服务器和客户机的设计。实现客户端接收键盘输入的字符串,并向服务器发送;服务器接收后,将字符串以逆序返回给客户端; 客户端显示服务器返回的逆序字符串。-A simple network communication system, communication between the two sides to send and receive messages, including ser
Android实现WIFI连接源码
- 这是Android中自带的一个应用程序,在手机的Settings中,它可以让用户手动打开或关闭Wi-Fi功能。当用户打开Wi-Fi功能后,它会自动搜索周围的无线网络,并以列表的形式显示,供用户选择,默认会连接用户上一次成功连接的无线网络。(This is an Android comes with an application, in the phone's Settings, it allows users to manually t
数据库连接
- 数据库连接 DBC连接数据库 ?创建一个以JDBC连接数据库的程序,包含7个步骤: 1、加载JDBC驱动程序: 在连接数据库之前,首先要加载想要连接的数据库的驱动到JVM(Java虚拟机), 这通过java.lang.Class类的静态方法forName(String className)实现。 例如: try{ //加载MySql的驱