代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/124241/14584655
sql total_num.sql
USE Stock
GO
CREATE VIEW dbo.Total_Num
AS
SELECT dbo.ProInStore.Pid, SUM(dbo.ProInStore.Pnum) AS Total
FROM dbo.ProInStore INNER JOIN
dbo.Product ON dbo.ProInStore.Pid = dbo.Product.Pid
G
www.eeworm.com/read/124241/14584672
sql v_proinstore.sql
USE Stock
GO
CREATE VIEW dbo.v_ProInStore
AS
SELECT p.Pid, SUM(s.Pnum) AS SumNum
FROM dbo.Product p INNER JOIN
dbo.ProInStore s ON p.Pid = s.Pid
GROUP BY p.Pid
GO
www.eeworm.com/read/223989/14608659
c,v x_stacktrace.c,v
head 1.1;
access;
symbols;
locks
dls:1.1; strict;
comment @ * @;
1.1
date 97.09.21.19.29.03; author dls; state Dist;
branches;
next ;
desc
@@
1.1
log
@pre-3e code
@
text
@/* x_stacktrace.c - x_
www.eeworm.com/read/223989/14608716
c x_kill.c
/* x_kill.c - x_kill */
#include
#include
#include
/*------------------------------------------------------------------------
* x_kill - (command kill) terminate a
www.eeworm.com/read/223989/14608734
c x_stacktrace.c
/* x_stacktrace.c - x_stacktrace */
#include
#include
#include
/*------------------------------------------------------------------------
* x_stacktrace - (command s
www.eeworm.com/read/223317/14646426
c event.c
/*
* Event notification code.
* (C) 2005 FUJITA Tomonori
* This code is licenced under the GPL.
*
* Some functions are based on audit code.
*/
#include
#include "iet
www.eeworm.com/read/223215/14649763
js pvcounter.js
var Q = "http://counter.sina.com.cn/pvcounter?pid=";
function request_pvcounter(){
var request_url = Q;
var elem = document.getElementsByTagName("span");
for( i=0; i
www.eeworm.com/read/122882/14662481
c pipe_dup.c
#include "unistd.h"
#include "stdio.h"
#include "string.h"
main()
{ int fd[2],pid;
char buffer;
pipe(fd);
pid=fork();
if(pid==0)
{
close(fd[1]);
dup2(fd[0],0);
close(fd[0]);
exec
www.eeworm.com/read/222804/14673460
js pvcounter.js
var Q = "http://counter.sina.com.cn/pvcounter?pid=";
function request_pvcounter(){
var request_url = Q;
var elem = document.getElementsByTagName("span");
for( i=0; i
www.eeworm.com/read/222686/14679866
c setsid.c
/*
* linux/lib/setsid.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall0(pid_t,setsid)