代码搜索:CONNECT
找到约 10,000 项符合「CONNECT」的源代码
代码结果 10,000
www.eeworm.com/read/174072/9609449
cpp ex202_db2.cpp
#include
using namespace std;
#include
#define OTL_DB2_CLI // Compile OTL 4.0/DB2-CLI
#include // include the OTL 4.0 header file
otl_connect db; // connect obj
www.eeworm.com/read/174072/9609518
cpp ex210_oci8.cpp
#include
using namespace std;
#include
#define OTL_ORA8I // Compile OTL 4.0/OCI
//#define OTL_ORA8 // Compile OTL 4.0/OCI
//#define OTL_ORA7 // Compile OTL 4.0/OCI
#define
www.eeworm.com/read/174072/9609528
cpp ex305_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC // Compile OTL 4.0/ODBC
#include // include the OTL 4.0 header file
otl_connect db; // connect object
www.eeworm.com/read/174072/9609560
cpp ex82_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC_MYSQL // Compile OTL 4/MyODBC
// #define OTL_ODBC_UNIX // uncomment this line if UnixODBC is used
#include
www.eeworm.com/read/174072/9609576
cpp ex31_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC // Compile OTL 4/ODBC
#include // include the OTL 4 header file
otl_connect db; // connect object
voi
www.eeworm.com/read/174072/9609614
cpp ex152_oci8.cpp
#include
using namespace std;
#include
#define OTL_ORA8 // Compile OTL 4.0/OCI8
//#define OTL_ORA8I // Compile OTL 4.0/OCI8i
//#define OTL_ORA9I // Compile OTL 4.0/OCI9i
#
www.eeworm.com/read/174072/9609664
cpp ex92_db2.cpp
#include
using namespace std;
#include
#define OTL_DB2_CLI // Compile OTL 4/DB2-CLI
#include // include the OTL 4 header file
otl_connect db; // connect object
www.eeworm.com/read/174072/9609714
cpp ex156_oci8.cpp
#include
using namespace std;
#include
#include
#include
#define OTL_ORA8 // Compile OTL 4.0/OCI8
//#define OTL_ORA8I // Compile OTL 4.0/OCI8(i)
/
www.eeworm.com/read/174072/9609733
cpp ex34_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC // Compile OTL 4/ODBC
#include // include the OTL 4 header file
otl_connect db; // connect object
voi
www.eeworm.com/read/369540/9641218
txt 套接口.txt
套接口(sockets)
在本专题的前面几个部分,如消息队列、信号灯、共享内存等,都是基于Sys V的IPC机制进行讨论的,它们的应用局限在单一计算机内的进程间通信;基于BSD套接口不仅可以实现单机内的进程间通信,还可以实现不同计算机进程之间的通信。本文将主要介绍BSD套接口(sockets),以及基于套接口的重要而基本的API。
一个套接口可以看作是进程间通信的端点(endpoint),每个 ...