您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. sqlserver2005存储过程例子

  2. 直接执行文件中的语句即可创建存储过程。 CREATE PROCEDURE [createReDealCheck] -- Add the parameters for the stored procedure here AS BEGIN declare @Cur_Error as integer set @Cur_Error = 0 BEGIN TRANSACTION Tran_1 -- SET NOCOUNT ON added to prevent extra result sets from
  3. 所属分类:其它

    • 发布日期:2009-07-31
    • 文件大小:37888
    • 提供者:hygtest
  1. 存储过程实现上移下移.doc

  2. 存储过程名:包括页面后台代码和触发器和数据库连接类都有了,并且经过测试完全正确。 ChannelSet_MoveUP(上移) CREATE procedure [dbo].[ChannelSet_MoveUP] @ChannelID INT as DECLARE @SortID int DECLARE @TempSortID INT DECLARE @TempID INT BEGIN TRAN SELECT @SortID=SortID from ChannelSet where Channe
  3. 所属分类:其它

    • 发布日期:2009-07-31
    • 文件大小:101376
    • 提供者:xuefeixuefei
  1. 用于初学者简单的2分频

  2. entity shi_fen_wu is port(clk:in std_logic; q:out std_logic); end; architecture a of shi_fen_wu is --variable cnt:std_logic; signal cnt4:integer range 0 to 1;------------- begin ------------------------------ process(clk) begin if clk'event and clk=
  3. 所属分类:其它

    • 发布日期:2009-07-31
    • 文件大小:578
    • 提供者:fengyun8680
  1. How to use SFTP

  2. How to use SFTP (with client validation - public key authentication) The topic How to use SFTP (with client validation - password authentication) discusses the simplest form of client authentication, via password. In public key authentication, SS H
  3. 所属分类:FTP

    • 发布日期:2009-08-01
    • 文件大小:2048
    • 提供者:stewchicken
  1. Verilog实例.rar

  2. /* 本实验实现一个能显示小时,分钟,秒的数字时钟。 */ module clock(clk,rst,dataout,en); input clk,rst; output[7:0] dataout; reg[7:0] dataout; output[7:0] en; reg[7:0] en; reg[3:0] dataout_buf[7:0]; reg[25:0] cnt; reg[15:0] cnt_scan; reg[3:0] dataout_code; wire[5:0] cal; //
  3. 所属分类:Java

    • 发布日期:2009-08-06
    • 文件大小:699392
    • 提供者:lpyzckl
  1. SQL中存储过程的实例

  2. 帮助那些想尽快学习存储过程 实例:create PROCEDURE pagination @tblName varchar(255), -- 表名 @strGetFields varchar(1000) = '*', -- 需要返回的列 @fldName varchar(255)='', -- 排序的字段名 @PageSize int = 10, -- 页尺寸 @PageIndex int = 1, -- 页码 @pagecount int output, -- 返回页总数, 非 0 值则返回
  3. 所属分类:其它

    • 发布日期:2009-08-09
    • 文件大小:2048
    • 提供者:yuzi20
  1. gun tar for windows

  2. windows中打包tar文件 GUN tar 和在unix中使用tar命令基本上一样的。可以使用tar --help得到帮助的详细信息。 ------------------------------------------- GNU `tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive. Usage: tar [
  3. 所属分类:C

    • 发布日期:2009-08-10
    • 文件大小:1048576
    • 提供者:ghy_999
  1. .net数据访问类 SQL Helper 类

  2. .net数据访问类 SQL Helper 介绍 摘要:Data Access Application Block 是一个 .NET 组件,包含优化的数据访问代码,可以帮助用户调用存储过程以及向 SQL Server 数据库发出 SQL 文本命令。它返回 SqlDataReader、DataSet 和 XmlReader 对象。您可以在自己的 .NET 应用程序中将其作为构造块来使用,以减少需要创建、测试和维护的自定义代码的数量。您可以下载完整的 C# 和 Visual Basic .NET 源
  3. 所属分类:其它

    • 发布日期:2009-08-11
    • 文件大小:150528
    • 提供者:seekjava
  1. Dephi精华收集,来自万一的资料

  2. absolute //它使得你能够创建一个新变量, 并且该变量的起始地址与另一个变量相同. var Str: string[32]; StrLen: Byte absolute Str; //这个声明指定了变量StrLen起始地址与Str相同. //由于字符串的第0个位置保存了字符串的长度, 所以StrLen的值即字符串长度. begin Str := 'abc'; Edit1.Text := IntToStr(StrLen); end;
  3. 所属分类:专业指导

    • 发布日期:2009-08-13
    • 文件大小:1048576
    • 提供者:nanping
  1. oracle存储过程的学习资料

  2. oracle存储过程的学习资料,包括oracle,基本命令,触发器等资料 .1.基本结构 CREATE OR REPLACE PROCEDURE 存储过程名字 ( 参数1 IN NUMBER, 参数2 IN NUMBER ) IS 变量1 INTEGER :=0; 变量2 DATE; BEGIN END 存储过程名字 2.SELECT INTO STATEMENT 将select查询的结果存入到变量中,可以同时将多个列存储多个变量中,必须有一条 记录,否则抛出异常(如果没有记录抛出NO_D A
  3. 所属分类:Oracle

    • 发布日期:2009-08-13
    • 文件大小:72704
    • 提供者:niulu90
  1. oracle存储过程语法

  2. 1.基本结构 CREATE OR REPLACE PROCEDURE 存储过程名字 ( 参数1 IN NUMBER, 参数2 IN NUMBER ) IS 变量1 INTEGER :=0; 变量2 DATE; BEGIN END 存储过程名字 2.SELECT INTO STATEMENT 将select查询的结果存入到变量中,可以同时将多个列存储多个变量中,必须有一条 记录,否则抛出异常(如果没有记录抛出NO_DATA_FOUND) 例子: BEGIN SELECT col1,co l2 i
  3. 所属分类:Oracle

    • 发布日期:2009-08-13
    • 文件大小:1048576
    • 提供者:niulu90
  1. IBM Cognos 8 Planning

  2. This book provides you with everything you need to know for building planning models using IBM Cognos 8 Planning. After reading this book, you can begin your journey into model building bringing with you a perspective that comes from three of the mo
  3. 所属分类:Web开发

    • 发布日期:2009-08-14
    • 文件大小:8388608
    • 提供者:zhou_fbo2008
  1. Delphi多线程编程之三 同步读写全局数据

  2. 一、临界区 所谓临界区,就是一次只能由一个线程来执行的一段代码。如果把初始化数组的代码放在临界区内,另一个线程在第一个线程处理完之前是不会被执行的。 使用临界区的步骤: 1、先声明一个全局变量类型为TRTLCriticalSection; 2、在线程Create()前调用InitializeCriticalSection()过程来初始化,该函数定义是: void WINAPI InitializeCriticalSection(LPCRITICAL_SECTION lpCriticalSect
  3. 所属分类:Delphi

    • 发布日期:2009-08-18
    • 文件大小:207872
    • 提供者:huangwenqing
  1. 在同步代码结束后,使用ReleaseMutex(THandle

  2. 您查询的关键词是:delphi 同步 数据 。如果打开速度慢,可以尝试快速版;如果想保存快照,可以添加到搜藏。 (百度和网页http://blog.csdn.net/mygodsos/archive/2008/10/19/3097921.aspx的作者无关,不对其内容负责。百度快照谨为网络故障时之索引,不代表被搜索网站的即时页面。) --------------------------------------------------------------------------------
  3. 所属分类:Delphi

    • 发布日期:2009-08-18
    • 文件大小:388096
    • 提供者:huangwenqing
  1. Begin visual C++2005

  2. 很好的VS2005入门教程,500多页的厚度,让你快速掌握VS2005
  3. 所属分类:C++

    • 发布日期:2009-08-18
    • 文件大小:7340032
    • 提供者:mrlanqiu
  1. 基本算法(Dijkstra 算法和其它算法程序)

  2. 类似标号法,本质为贪心算法。 var a:array[1..maxn,1..maxn] of integer; b,pre:array[1..maxn] of integer; {pre[i]指最短路径上I的前驱结点} mark:array[1..maxn] of boolean; procedure dijkstra(v0:integer); begin fillchar(mark,sizeof(mark),false); for i:=1 to n do b egin d[i]:=a[v0
  3. 所属分类:其它

    • 发布日期:2009-08-20
    • 文件大小:36864
    • 提供者:wangxj2732558
  1. Apress.Foundations.of.GTK+.Development.experts.voice.in.open.source.pdf.rar

  2. One of the most important aspects of an application is the interface that is provided to interact with the user. With the unprecedented popularity of computers in society today, people have come to expect those user interfaces to be graphical, and t
  3. 所属分类:C#

    • 发布日期:2007-09-23
    • 文件大小:8388608
    • 提供者:rootfs
  1. Beginning Shell Scripting

  2. Shell脚本编程方面的书
  3. 所属分类:其它

    • 发布日期:2007-10-04
    • 文件大小:8388608
    • 提供者:Smilo
  1. UNIX command

  2. • ls --- lists your files ls -l --- lists your files in 'long format', which contains lots of useful information, e.g. the exact size of the file, who owns the file and who has the right to look at it, and when it was last modified. ls -a --- lists
  3. 所属分类:其它

    • 发布日期:2009-09-01
    • 文件大小:57344
    • 提供者:lghzjr
  1. DELPHI7.0获取硬盘、CPU、网卡序列号

  2. DELPHI7.0获取硬盘、CPU、网卡序列号 //调用示例 procedure TForm1.Button1Click(Sender: TObject); begin Edit3.Text:=strpas(GetIdeSerialNumber);//取硬盘号 Edit2.text:=GetCPUIDStr;//CPU系列号 edit4.Text:=NBGetAdapterAddress(12);//非集成网卡 Edit1.text:=MacStr;//集成和非集成网卡 end;
  3. 所属分类:Delphi

    • 发布日期:2009-09-08
    • 文件大小:173056
    • 提供者:myzz02
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 50 »