CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 JSP源码/Java 搜索资源 - driver test

搜索资源列表

  1. jjinfo

    0下载:
  2. 采用jsp+servlet+javabean,jsp负责少量的页面处理,以servlet为主。 结构清晰明了,未对页面做美工处理,因此html和javascr ipt代码很少, 详细介绍了jdbc的常用api以及数据库中的表的级联。 开发调试平台为jbuilder9+tomcat4,在resin和weblogic下测试通过。 数据库平台为ms sql server2000 数据库连接池为apache组织下jakarta项目组开发的commons-dbcp 1.0
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:667886
    • 提供者:wyw0818
  1. 7894_SqlPlus

    0下载:
  2. 用JAVA写的数据库程序,Oracle的JDBC驱动程序,SqlServer的JDBC驱动程序,配置数据库连接,可以新增,修改,删除,也可以测试数据库连接是否配置正确-using Java to write a database program, Oracle JDBC driver, patching the JDBC driver, configuration database connectivity, the new, modified, and deleted. the databas
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:796182
    • 提供者:徐锋
  1. testjdbc

    0下载:
  2. 测试数据库是否连接成功!测试是否加载了驱动程序,是否连接成功!-Test database is connected successfully! Test whether the driver is loaded, is it connected successfully!
  3. 所属分类:Java Develop

    • 发布日期:2017-04-10
    • 文件大小:1094
    • 提供者:罗伟
  1. test_online

    0下载:
  2. 系统基于Browser/Server模式开发,应用DreamweaverMX软件,结合JSP编程技术,并以 Microsoft SQL server2000为数据库开发工具,在Windows xp系统中使用JDBC驱动程序进行数据库连接。 论文主要阐述的是考试管理系统的操作过程及一些关键技术。该系统考生和管理员信息主要在管理员系统中输入,不需数据库直接输入,考试时考生输入准考证号码,核对正确后进入考生界面,考生界面主要有选择试卷、成绩查询组成,关键实现了考生在选择试卷后进入考试窗体,系统强
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:511666
    • 提供者:田月
  1. db_driver

    1下载:
  2. 数据库连接驱动及JAVA连接测试程序 (包含db2,informix,sysbase,mssql,mysql,oracle)-JAVA Database Connectivity driver and the connection test procedures (including db2, informix, sysbase, mssql, mysql, oracle)
  3. 所属分类:Java Develop

    • 发布日期:2017-06-02
    • 文件大小:14693230
    • 提供者:yqhong
  1. JSPshop10

    0下载:
  2. 为方便广大网友测试安装成功,jspshop.cn技术人员提供了更为简洁的安装方法: 1.配置tomcat服务器--首先安装jdk,后安装tomcat 详细配置说明 2.点击jspshop 1.0.exe安装文件。(注意在安装时选择目录 tomcat根目录\webapps\root.) 3.设置数据源:控制面板--管理工具--数据源(ODBC)--添加 用户数据源 选择 驱动器为:microsoft Access Driver 数据源名为jspshop 数据库在 to
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-04-10
    • 文件大小:1488893
    • 提供者:zhanxin
  1. kingdao

    0下载:
  2. 根据数据库自动生成DAO和DTO,具体方法:解压到D盘根目录,修改property文件的数据库路径,驱动,用户名,密码等,进入CMD到D盘运行java -jar kingdao.jar即在D盘根目录test文件夹下生成DAO和DTO-DAO and the database automatically generated DTO, specific methods: unzip to D root directory, modify the property file of the databa
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:347769
    • 提供者:陈凡淼
  1. JSPconnectdb

    0下载:
  2. 现在初学jsp的网友常问数据库怎么连接啊,怎么老出错啊?这里写了篇文章供大家参考,其实这种把数据库逻辑全部放在jsp里未必是好的做法,但是有利于初学者学习,所以我就这样做了,当大家学到一定程度的时候,可以考虑用MVC的模式开发。在练习这些代码的时候,你一定将jdbc的驱动程序放到服务器的类路径里,然后要在数据库里建一个表test,有两个字段比如为test1,test2,可以用下面SQL建 -< @ page contentType="text/html charset=gb2312" &g
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-04-01
    • 文件大小:1598
    • 提供者:liujia
  1. database

    0下载:
  2. 查询数据库首先需要导入数据库对应的JDBC驱动包代码中:需要一个Driver,forname一下 Driver.connect(...连接url,通常里面就指定了远程主机的ip或名称了,不同数据库JDBC的url有不同写法)得到一个Connection 此后...你懂的。~ 补充:UnknownHostException指无法检测到对应的主机,在你机子上做这样的测试: ping 这个host telnet host 端口如果这两个都通过了,一般不会有这个异常了。如果出现类似不允许访问数据库的情况
  3. 所属分类:JavaScript

    • 发布日期:2017-03-28
    • 文件大小:1804
    • 提供者:zhang
  1. JDBC

    0下载:
  2. 使用JDBC驱动程序连接数据库,并且连接后做了一些查询和增删改的测试,适合于初学者使用和学习JDBC原理。-Use the JDBC driver to connect the SQL Server Database.I did some test of search and add information or change information.It s good for primer learners.
  3. 所属分类:Java Develop

    • 发布日期:2017-05-10
    • 文件大小:2557552
    • 提供者:依颜曦
  1. car_control

    0下载:
  2. Arduino 小车控制的程序测试通过,arduino uno 驱动L298N通过串口可以控制车控制-Arduino for car the program is test in arduino uno+driver
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:849
    • 提供者:qinyx
  1. TestHelper_DriverManager

    0下载:
  2. Helper class for the Driver manager tes - it allows the test code to be loaded under a different classloader, necessary for testing the DeregisterDriver function of DriverManager.
  3. 所属分类:JavaScript

    • 发布日期:2017-04-06
    • 文件大小:1195
    • 提供者:gongoden
  1. JDBCDriverFunctionalTest

    0下载:
  2. J D B C Driver Functional Test extends Abstract Sql Test.
  3. 所属分类:JavaScript

    • 发布日期:2017-04-11
    • 文件大小:977
    • 提供者:siuyinheng
  1. shell

    0下载:
  2. The test driver searches for such a phrase in the test output.
  3. 所属分类:JavaScript

    • 发布日期:2017-04-14
    • 文件大小:3126
    • 提供者:lonsaopu
  1. img_Undo

    0下载:
  2. Abstract base class of Port-specific entrypoints for the layout tests test infrastructure (the Port and Driver classes).
  3. 所属分类:JavaScript

    • 发布日期:2017-04-24
    • 文件大小:9687
    • 提供者:niesunju
  1. driver_test

    0下载:
  2. Simple test client for the port/Driver interface.
  3. 所属分类:JavaScript

    • 发布日期:2017-04-12
    • 文件大小:864
    • 提供者:vaokenva
  1. CarExamination

    0下载:
  2. 模拟驾驶员理论考试系统,采用javaSwing技术编写。-Analog driver theory test system, using javaSwing technical writing.
  3. 所属分类:Java Develop

    • 发布日期:2017-05-17
    • 文件大小:4940957
    • 提供者:王鑫
  1. 2410_wtd

    0下载:
  2. FS2410开发板WTD驱动程序及其测试程序-FS2410 driver development board WTD and test procedures
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2338
    • 提供者:arjrkend
  1. hw1

    0下载:
  2. Drunkard.java Your Drunkard class. The interface is provided. You will be completing the implementation, and a test driver for it. RandomWalkViewer.java Your RandomWalkViewer class. You create this file and class. RandomWalkComponent.java Your Ra
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:4124
    • 提供者:Lannister
  1. test

    0下载:
  2. MC14489驱动五位共阴极数码管,应用DSPIC33F来驱动MC14489,从而点亮数码管,显示12345-MC14489 five common cathode LED driver application DSPIC33F to drive the MC14489, lighted digital display 12345
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1495
    • 提供者:k2568610zhuang
« 12 »
搜珍网 www.dssz.com