代码搜索:Connection
找到约 10,000 项符合「Connection」的源代码
代码结果 10,000
www.eeworm.com/read/428439/8868304
nfo driver.nfo
[DriverInfo]
DriverName=Intel(R) 82566DM-2 Gigabit Network Connection
InfFile=oem0.inf
HardwareID=PCI\VEN_8086&DEV_10BD&SUBSYS_02111028&REV_02
OS=4
www.eeworm.com/read/428408/8871070
txt jdbcforsql.txt
1、Oracle8/8i/9i数据库(thin模式)
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:orcl"; //orcl为数据库的SID
String user="test";
String passwor
www.eeworm.com/read/285071/8871092
java reverse.java
import java.io.*;
import java.net.*;
public class Reverse {
public static void main(String[] args) throws Exception {
if (args.length != 1) {
System.err.println("Usage: java Reverse string_
www.eeworm.com/read/285071/8871099
java comwithcgi.java
import java.io.*;
import java.net.*;
public class ComWithCgi{
public static void main(String[] args) throws Exception{
URL url = new URL("http:/java.sun.com/test.cgi");
// 建立指向本地磁盘
www.eeworm.com/read/428400/8871822
java connectdb.java
package conn;
import java.io.*;
import java.util.*;
import java.sql.*;
import javax.sql.*;
import com.microsoft.jdbc.sqlserver.*;
import com.microsoft.jdbcx.sqlserver.*;
public class Connec
www.eeworm.com/read/428400/8871857
java connxmlparser.java
package conn;
import javax.xml.parsers.*;
import org.w3c.dom.*;
import com.microsoft.jdbc.sqlserver.*;
import com.microsoft.jdbcx.sqlserver.*;
import javax.sql.DataSource;
import java.sql.Co
www.eeworm.com/read/428400/8871935
java dbconstants.java
package conn;
public class DBConstants
{
public static final String FILENAME = "\\WEB-INF\\configs.xml";
public static final String ROOT = "connection";
public static final String SERVER
www.eeworm.com/read/384361/8875508
am makefile.am
## Makefile.am for pursuit server
## define the program that has to be built and the related sources
bin_PROGRAMS = trilearn_player trilearn_coach
SOURCES = Connection.cpp \
SenseHa
www.eeworm.com/read/428303/8877000
java server.java
//server
import java.net.*;
import java.io.*;
import java.util.*;
public class Server {
public static void main(String[] args) throws Exception {
try{
ServerSocket listensocket=new ServerSocke