代码搜索:proc
找到约 10,000 项符合「proc」的源代码
代码结果 10,000
www.eeworm.com/read/321465/3536284
c proc_mutex.c
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyrig
www.eeworm.com/read/321465/3536289
c proc_mutex.c
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyrig
www.eeworm.com/read/321465/3536293
c proc_mutex.c
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyrig
www.eeworm.com/read/321465/3536299
c proc_mutex.c
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyrig
www.eeworm.com/read/321465/3536371
c proc_child.c
#include "apr.h"
#include
#if APR_HAVE_UNISTD_H
#include
#endif
#if APR_HAVE_IO_H
#include
#endif
#include
int main(void)
{
char buf[256];
apr_ssize_t b
www.eeworm.com/read/320693/3541962
sql proc_insertstorage.sql
use db_SMS
go
if object_Id('proc_insertStorage') is not null
drop proc proc_insertStorage
go
create proc proc_insertStorage
(
@StoreName varchar (100),
@StorePeople varchar (20),
@StorePhone
www.eeworm.com/read/320693/3541963
sql proc_login.sql
use db_SMS
go
if object_id('proc_Login') is not null
drop proc proc_Login
go
create proc proc_Login
(
@UserName varchar (20),
@UserPwd varchar (20)
)
as
if exists(select * from tb_User wher
www.eeworm.com/read/320693/3541964
sql proc_insertcheck.sql
use db_SMS
go
if object_Id('proc_insertCheck') is not null
drop proc proc_insertCheck
go
create proc proc_insertCheck
(
@GoodsID bigint,
@StoreName varchar(100),
@GoodsName varchar (50),
@Go
www.eeworm.com/read/320693/3541965
sql proc_updateuser.sql
if object_Id('proc_updateUser') is not null
drop proc proc_updateUser
go
create proc proc_updateUser
(
@UserID bigint,
@UserPwd varchar (20),
@UserRight char (10)
)
as
update tb_User set Use
www.eeworm.com/read/320693/3541966
sql proc_insertprovider.sql
use db_SMS
go
if object_Id('proc_insertProvider') is not null
drop proc proc_insertProvider
go
create proc proc_insertProvider
(
@PrName varchar (100),
@PrPeople varchar (20),
@PrPhone varcha