代码搜索:型号参数
找到约 10,000 项符合「型号参数」的源代码
代码结果 10,000
www.eeworm.com/read/126803/14402211
sql 调用带参数的存储过程.sql
--调用带参数的存储过程
--定义变量获取输出
use pubs
declare @bcount int
--执行存储过程
execute up_get_books_count
'business',
@bcount output
--显示输出结果
select @bcount
www.eeworm.com/read/126803/14402263
sql 创建带参数的存储过程.sql
--创建带输入和输出参数的存储过程
create procedure up_get_books_count
@books_type varchar(80),
@books_count int OUTPUT
as
select @books_count = count(title)
from titles
where type = @books_type
www.eeworm.com/read/126803/14402267
sql 删除带参数的存储过程.sql
--检查存储过程是否存在,如果存在则删除
if exists(select name
from sysobjects
where name = 'up_get_books_count'
and type = 'P')
drop procedure up_get_books_count
www.eeworm.com/read/221559/14737721
fxp 系统环境参数设置.fxp
www.eeworm.com/read/221559/14737724
prg 系统环境参数设置.prg
SET SYSMENU OFF
SET SYSMENU TO
SET TALK OFF
SET NOTIFY OFF
SET CLOCK STATUS
SET PALETTE OFF
SET BELL ON
SET SAFETY OFF
SET ESCAPE ON
SET KEYCOMP TO WINDOWS
SET CARRY ON
SET EXACT ON
SET NE
www.eeworm.com/read/120170/14811691
doc na3100参数配置协议.doc
www.eeworm.com/read/119569/14826316
sql 执行带输出参数存储过程.sql
DECLARE @AGE TINYINT
EXEC MY_PROC1 null,
@AGE OUTPUT
SELECT @AGE 年龄
www.eeworm.com/read/119569/14826319
sql 创建带输出参数存储过程.sql
CREATE PROC MY_PROC1
(@NAME CHAR(8)=NULL,
@AGE TINYINT OUTPUT
)
AS
IF @NAME=NULL
BEGIN
PRINT '查找哪位同学的年龄?'
RETURN
www.eeworm.com/read/218886/14903501
rc2 轧机力能参数设计.rc2
//
// 轧机力能参数设计.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
//
www.eeworm.com/read/218886/14903535
h 轧机力能参数设计dlg.h
// 轧机力能参数设计Dlg.h : header file
//
#if !defined(AFX_DLG_H__FAB77448_B25A_4FBE_AF01_20BE09FBF6F4__INCLUDED_)
#define AFX_DLG_H__FAB77448_B25A_4FBE_AF01_20BE09FBF6F4__INCLUDED_
#if _MSC_VER > 100