代码搜索:driverName
找到约 1,226 项符合「driverName」的源代码
代码结果 1,226
www.eeworm.com/read/127767/14336629
txt e237. connecting to a sqlserver database.txt
This example connects to a SQLServer database using the NetDirect JDBC driver. For information about this driver, see e232 Getting JDBC Drivers for a Database.
Connection connection = null;
www.eeworm.com/read/127767/14337550
txt e241. handling a sql exception.txt
This example demonstrates how to retrieve the information in a SQLException.
try {
// Execute SQL statements...
} catch (SQLException e) {
while (e != null) {
www.eeworm.com/read/127767/14337970
txt e233. loading a jdbc driver.txt
Before a connection to a database can be established, the JDBC driver for that database must be loaded. Drivers automatically register themselves with the JDBC system when loaded. There are two ways t
www.eeworm.com/read/171026/5400422
cpp tdriver.cpp
//if you use this code in a mfc program:
//add the header stdafx.h or disable precompiled header
//Unless you do it, when compiling vc will say: Unexpected end
//of file while looking for precomp
www.eeworm.com/read/170988/5401732
cpp control.cpp
// Control.cpp -- IOCTL handlers for fputest driver
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#include "stddcls.h"
#include "driver.h"
#include "ioctls.h"
// This s
www.eeworm.com/read/155814/5618794
ini protocol.ini
;-------------------------------------------------------------------
; VIA PCI 10/100Mb Fast Ethernet Adapter protocol.ini sample
;-------------------------------------------------------------------
www.eeworm.com/read/366806/9797203
java databasemanager.java
import java.sql.*;
import java.util.*;
import sun.jdbc.odbc.*;
public class DatabaseManager
{
// These properties could come from a system configuration file
//static private String urlHeader = "
www.eeworm.com/read/415188/11082611
java dbconn.java
package db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.io.InputStream;
import java.util.Properties;
/**
* 数据库连接类
* @author 邓子云
*/
public class dbconn {
Str
www.eeworm.com/read/415188/11082618
java dbconn.java
package db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.io.InputStream;
import java.util.Properties;
/**
* 数据库连接类
* @author 邓子云
*/
public class dbconn {
Str