代码搜索:instead

找到约 6,048 项符合「instead」的源代码

代码结果 6,048
www.eeworm.com/read/107485/15606479

sql triggerdemo23.sql

/* 文件名称: TriggerDemo23.sql 目 的: 示范如何利用 INSTEAD OF UPDATE 触发程序去更新视图的来源数据表 */ USE 北风贸易 GO IF exists (select * from dbo.sysobjects where id = object_id(N'dbo.BaseTable') and OBJECTPROPERTY
www.eeworm.com/read/105292/15671609

txt ado to excel readme.txt

Modified August 9, 2001 Allows users to select any ODBC data source, or an MS Access database, to display the tables in it, and select a table, which is automatically loaded into an Excel spreadshe
www.eeworm.com/read/104788/15683018

bat sfxbt.bat

@rem This alters the OBJ file so that is is byte aligned @rem instead of PARA aligned. This messes up the checksum @rem at offset 20h also. debug sfxbin.obj
www.eeworm.com/read/104788/15683019

bat sfx2bt.bat

@rem This alters the OBJ file so that is is byte aligned @rem instead of PARA aligned. This messes up the checksum @rem at offset 20h also. debug sfx2bin.obj
www.eeworm.com/read/102893/15753017

xml undeploy.xml

www.eeworm.com/read/102893/15753022

xml deploy.xml

www.eeworm.com/read/102394/15783500

todo

use macros so that all complex arithmetic can use native complex types if compiler supports them make sure double/float are replaced by BASE everywhere gbmv_c : use conj*imag instead of having bra
www.eeworm.com/read/291881/8391124

bugs

Known bugs for 0.3.0 - Bug #825743 - Popup menu Z-order can run into problems when popups overlap - The wGui library is currently built to the src directory instead of the lib directory when using GN
www.eeworm.com/read/387503/8669202

changelog

2000-02-27 * StartHeatbugs.java (main): Update for 2.1 and SDG. * HeatbugModelSwarm.java (buildActions): Store prototype in a variable. 2000-01-24
www.eeworm.com/read/428535/8861211

sql 用触发器来实现数据的完整性.sql

-- 一、用触发器来实现用户自定义完整性 select * from employee update employee set salary=salary/10 select * from employee update employee set salary=4500 where salary>5000 select * from employee --如果