搜索结果
找到约 58 项符合
Drop 的查询结果
按分类筛选
- 全部分类
- C/C++语言编程 (8)
- 单片机编程 (7)
- Delphi控件源码 (5)
- Java编程 (4)
- 其他书籍 (4)
- 微处理器开发 (2)
- VC书籍 (2)
- matlab例程 (2)
- 通讯编程文档 (2)
- SQL Server (2)
- 模拟电子 (1)
- PCB相关 (1)
- 电源技术 (1)
- 嵌入式综合 (1)
- 可编程逻辑 (1)
- Internet/网络编程 (1)
- 汇编语言 (1)
- 书籍源码 (1)
- 操作系统开发 (1)
- MySQL数据库 (1)
- 单片机开发 (1)
- 加密解密 (1)
- 企业管理 (1)
- JavaScript (1)
- 家庭/个人应用 (1)
- 游戏 (1)
- 系统设计方案 (1)
- 工业控制 (1)
- DSP工具/软件 (1)
- 书籍 (1)
C/C++语言编程 进销存管理实例程序源代码
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[采购订单_供货商_fk]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[采购订单] DROP CONSTRAINT 采购订单_供货商_fk
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[采购订单历史_供货商_fk]') ...
C/C++语言编程 人力资源管理实例程序源代码
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK_工资发放历史表_职员基本信息表]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[工资发放历史表] DROP CONSTRAINT FK_工资发放历史表_职员基本信息表
GO
if exists (select * from dbo.sysobjects where id = object_id(N ...
C/C++语言编程 生产管理系统源代码
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[mrp物料需求计算_物料编号_fk]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[mrp物料需求计算] DROP CONSTRAINT mrp物料需求计算_物料编号_fk
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[m ...
C/C++语言编程 财务管理系统源代码
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK_分录表_凭证表]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[分录表] DROP CONSTRAINT FK_分录表_凭证表
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[本期汇总账簿_科目代码_fk]') and ...
C/C++语言编程 图书馆管理系统源代码
if exists (select * from dbo.sysobjects where id = object_id(N\'[dbo].[图书丢失_图书编号_fk]\') and OBJECTPROPERTY(id, N\'IsForeignKey\') = 1)
ALTER TABLE [dbo].[图书丢失] DROP CONSTRAINT 图书丢失_图书编号_fk
GO
if exists (select * from dbo.sysobjects where id = object_id(N\'[dbo].[FK_图书罚款_图书 ...
可编程逻辑 电源完整性分析应对高端PCB系统设计挑战
印刷电路板(PCB)设计解决方案市场和技术领军企业Mentor Graphics(Mentor Graphics)宣布推出HyperLynx® PI(电源完整性)产品,满足业内高端设计者对于高性能电子产品的需求。HyperLynx PI产品不仅提供简单易学、操作便捷,又精确的分析,让团队成员能够设计可行的电源供应系统;同时缩短设计周期,减少原型生成、重 ...
微处理器开发 A simple C program to strobe the LEDsvia Port D. The strobe rate is to be set by adjusting the volta
A simple C program to strobe the LEDsvia Port D. The strobe rate is to be set by adjusting the voltage drop over a potentiometer that is sampled by an ADC.
VC书籍 MFC Black Book Introduction: Are you an MFC programmer? Good. There are two types of MFC programme
MFC Black Book
Introduction:
Are you an MFC programmer? Good. There are two types of MFC programmers. What kind are you? The first kind are the good programmers who write programs that conform to the way MFC wants you to do things. The second bunch are wild-eyed anarchists who insist on getting thin ...
书籍源码 中文名:Windows Forms 程序设计 英文名:Windows Forms Programming in c# 作者: Chris Sells 翻译: 荣耀 蒋贤哲 出版社:人民
中文名:Windows Forms 程序设计
英文名:Windows Forms Programming in c#
作者: Chris Sells
翻译: 荣耀 蒋贤哲
出版社:人民邮电出版社
代码内容:
The Table of Contents
* Foreword
* Preface
* Chapter 1 Hello, Windows Forms
* Chapter 2 Forms
* Chapter 3 Dialogs
* Chapter 4 Layout
* Chapter 5 Drawing B ...
其他书籍 SQL是英文Structured Query Language的缩写
SQL是英文Structured Query Language的缩写,意思为结构化查询语言。SQL语言的主要功能就是同各种数据库建立联系,进行沟通。按照ANSI(美国国家标准协会)的规定, SQL被作为关系型数据库管理系统的标准语言。SQL语句可以用来执行各种各样的操作,例如更新数据库中的数据,从数据库中提取数据等。目前,绝大多数流 行的关系 ...