搜索结果
找到约 175 项符合
delete 的查询结果
按分类筛选
- 全部分类
- 其他书籍 (21)
- 其他 (15)
- Java编程 (10)
- 数据结构 (8)
- 文章/文档 (7)
- 书籍源码 (7)
- 电子书籍 (6)
- Linux/Unix编程 (6)
- VC书籍 (6)
- 其他数据库 (5)
- SQL Server (5)
- 文件格式 (4)
- 磁盘编程 (4)
- 软件设计/软件工程 (4)
- 数据库系统 (3)
- 操作系统开发 (3)
- Oracle数据库 (3)
- Java书籍 (3)
- 多国语言处理 (3)
- Delphi控件源码 (3)
- 开发工具 (2)
- 教育系统应用 (2)
- 软件工程 (2)
- 数值算法/人工智能 (2)
- 编译器/解释器 (2)
- 汇编语言 (2)
- 企业管理 (2)
- 行业发展研究 (2)
- 编辑器/阅读器 (2)
- 单片机开发 (2)
- 数学计算 (2)
- 加密解密 (2)
- 书籍 (2)
- 教程资料 (1)
- 教程资料 (1)
- 教程资料 (1)
- 实用工具 (1)
- Internet/网络编程 (1)
- Windows CE (1)
- uCOS (1)
- 手机短信编程 (1)
- MySQL数据库 (1)
- Delphi/CppBuilder (1)
- 压缩解压 (1)
- *行业应用 (1)
- FlashMX/Flex源码 (1)
- 中间件编程 (1)
- 网络 (1)
- 其他嵌入式/单片机内容 (1)
- 家庭/个人应用 (1)
- 手机彩信(MMS)编程 (1)
- MacOS编程 (1)
- Jsp/Servlet (1)
- 多媒体处理 (1)
- 软件 (1)
- 源码 (1)
其他书籍 SQL(Structured Query Language
SQL(Structured Query Language,结构查询语言)是一个功能强大的数据库语言。SQL通常使用于数据库的通讯。ANSI(美国国家标准学会)声称,SQL是关系数据库管理系统的标准语言。SQL语句通常用于完成一些数据库的操作任务,比如在数据库中更新数据,或者从数据库中检索数据。使用SQL的常见关系数据库管理系统有:Oracle、 Syb ...
其他书籍 SQL(Structured Query Language
SQL(Structured Query Language,结构查询语言)是一个功能强大的数据库语言。SQL通常使用于数据库的通讯。ANSI(美国国家标准学会)声称,SQL是关系数据库管理系统的标准语言。SQL语句通常用于完成一些数据库的操作任务,比如在数据库中更新数据,或者从数据库中检索数据。虽然绝大多数的数据库系统使用SQL,但是它们同样有 ...
MySQL数据库 phpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. Cur
phpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. Currently it can create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, manage keys on fields
其他 本设计的目的是通过设计和调试一个简单的文件系统
本设计的目的是通过设计和调试一个简单的文件系统,主要是模拟文件操作命令的执行,来模拟文件管理,使学生对主要文件操作命令的实质和执行过程有比较深入的了解,掌握它们的基本实施方法。具体要求如下:
(1) 设计一个支持n个用户的文件系统,每个用户可拥有多个文件:
(2) 采用二级或二级以上的多级文件目录管理;
( ...
加密解密 What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the poss
What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the possible way is encrypting these files.Here a simple encryption technique is used(In VB - The same technique can be implemented in "c" also.) Program flow Explained * Open the File to be encrypted for Bin ...
其他书籍 An example to accompany PCW March 2004 Visual Programming Hands On. To use, open the solution in
An example to accompany PCW March 2004 Visual Programming Hands On.
To use, open the solution in the SchoolApp folder.
April 2004: Now revised to add New and Delete options.
Tim Anderson
http://www.itwriting.com/pcw/
软件设计/软件工程 #include<iostream> using namespace std int main() { unsigned long x,warcraft,war,l
#include<iostream>
using namespace std
int main()
{
unsigned long x,warcraft,war,l
cin> x
while(x)
{
unsigned long *p=new unsigned long[x+1]
if(p==NULL)
{
cerr<<"error!"<<endl
abort()
}
for(warcraft=0 warcraft<=x warcraft++)
*(p+warcraft)=0
*p=1
for(warcraft=0 war ...
文章/文档 数据库的设计范式是数据库设计所需要满足的规范
数据库的设计范式是数据库设计所需要满足的规范,满足这些规范的数据库是简洁的、结构明晰的,同时,不会发生插入 (insert)、删除(delete)和更新(update)操作异常。反之则是乱七八糟,不仅给数据库的编程人员制造麻烦,而且面目可憎,可能存储了 大量不需要的冗余信息。
设计范式是不是很难懂呢?非也,大学教材上给 ...
数据结构 This code implements min binomial heaps and min leftist trees.Plus, measure and compare the relative
This code implements min binomial heaps and min leftist trees.Plus, measure and compare the relative performance of these two implementations under the assumption that the only permissible operations are insert and delete-min.
文章/文档 一、目的要求 1、用高级语言编写和调试一个简单的文件系统
一、目的要求
1、用高级语言编写和调试一个简单的文件系统,模拟文件管理的工作过程。从而对各种文件操作命令的实质内容和执行过程有比较深入的了解。
2、要求设计一个 n个用户的文件系统,每次用户可保存m个文件,用户在一次运行中只能打开一个文件,对文件必须设置保护措施,且至少有Create、delete、open、close、read ...