代码搜索:sql server
找到约 10,000 项符合「sql server」的源代码
代码结果 10,000
www.eeworm.com/read/199150/5079918
dpr server.dpr
program Server;
uses
Forms,
ServerForm in 'ServerForm.pas' {fmServer},
Server_TLB in 'Server_TLB.pas',
Data in 'Data.pas' {Datas: TRemoteDataModule} {Datas: CoClass};
{$R *.TLB}
{
www.eeworm.com/read/198916/5080760
c server.c
#include "unpipc.h"
void
server(int readfd, int writefd)
{
int fd;
ssize_t n;
char buff[MAXLINE+1];
/* 4read pathname from IPC channel */
if ( (n = Read(readfd, buff, MAXLINE)) == 0
www.eeworm.com/read/198916/5080834
c server.c
#include "mesg.h"
void
server(int readid, int writeid)
{
FILE *fp;
char *ptr;
ssize_t n;
struct mymesg mesg;
void sig_chld(int);
Signal(SIGCHLD, sig_chld);
for ( ; ; ) {
/*
www.eeworm.com/read/198916/5080979
c server.c
#include "mesg.h"
void
server(int readfd, int writefd)
{
FILE *fp;
char *ptr;
pid_t pid;
ssize_t n;
struct mymesg mesg;
for ( ; ; ) {
/* 4read pathname from IPC channel */
me
www.eeworm.com/read/198916/5080999
c server.c
#include "unpipc.h"
#include "square.h"
square_out *
squareproc_1_svc(square_in *inp, struct svc_req *rqstp)
{
static square_out out;
printf("thread %ld started, arg = %ld\n",
pr_thr
www.eeworm.com/read/198916/5081003
c server.c
#include "unpipc.h"
#include "square.h"
square_out *
squareproc_1_svc(square_in *inp, struct svc_req *rqstp)
{
static square_out out;
printf("server procedure started\n");
out.res1 = inp
www.eeworm.com/read/198916/5081007
c server.c
#include "unpipc.h"
#include "square.h"
bool_t
squareproc_2_svc(square_in *inp, square_out *outp, struct svc_req *rqstp)
{
printf("thread %ld started, arg = %ld\n",
pr_thread_id(NULL), i
www.eeworm.com/read/198916/5081011
c server.c
#include "unpipc.h"
#include "square.h"
square_out *
squareproc_1_svc(square_in *inp, struct svc_req *rqstp)
{
static square_out out;
printf("server procedure started\n");
out.res1 = inp
www.eeworm.com/read/198916/5081015
c server.c
#include "unpipc.h"
#include "square.h"
square_out *
squareproc_1_svc(square_in *inp, struct svc_req *rqstp)
{
static square_out out;
out.res1 = inp->arg1 * inp->arg1;
return(&out);
}