代码搜索:insert
找到约 10,000 项符合「insert」的源代码
代码结果 10,000
www.eeworm.com/read/117054/14942688
~dfm mc_insert.~dfm
object MInsert: TMInsert
Left = 1
Top = 26
BorderStyle = bsToolWindow
Caption = #25910#36153#36890#30693#21333#65306
ClientHeight = 397
ClientWidth = 630
Color = clBtnFace
Font
www.eeworm.com/read/117054/14942729
~pas mc_insert.~pas
unit MC_Insert;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
DBTables, Db, Grids, DBGrids, DBCtrls, StdCtrls, ComCtrls, Mask, Buttons;
type
www.eeworm.com/read/117054/14942858
~ddp mc_insert.~ddp
www.eeworm.com/read/117054/14942896
ddp mc_insert.ddp
www.eeworm.com/read/117054/14943184
pas mc_insert.pas
unit MC_Insert;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
DBTables, Db, Grids, DBGrids, DBCtrls, StdCtrls, ComCtrls, Mask, Buttons;
type
www.eeworm.com/read/217763/14952113
sql xs_insert.sql
create procedure xs_insert
@jszh char(8),@xm char(8),@zym char(12),@xb bit,@cssj datetime
as
insert zzyxs(借书证号,姓名,专业名,性别,出生时间)
values(@jszh,@xm,@zym,@xb,@cssj)
www.eeworm.com/read/217763/14952120
sql jy_insert.sql
create procedure jy_insert
@jszh char(8),@isbn char(16),@ssh char(10),@jssj datetime,@flag int output
as
set @flag=(select 库存量 from zzybook where ISBN=@isbn)
if @flag>0
www.eeworm.com/read/217763/14952132
sql book_insert.sql
create procedure book_insert
@isbn char(16),@sm char(26),@zz char(8),@cbs char(20),@jg float(8),@fbl int ,@kcl int
as
insert into zzybook(ISBN,书名,作者,出版社,价格,复本量,库存量)
values(@isbn,@s
www.eeworm.com/read/217763/14952137
sql tjy_insert.sql
create trigger tjy_insert on zzyjy
for insert
as
begin
update zzyxs
set 借书量=借书量+1
where zzyxs.借书证号 in
(select inserted.借书证号
www.eeworm.com/read/215382/15063136
m insert_value.m
function y=insert_value(x,ratio)
%两路信号进行插值
y=zeros(1,ratio*length(x));
a=1:ratio:length(y);
y(a)=x;