1)SQL databaseSQL数据库
1.Integration and application of Notes document database and SQL database;Notes文档数据库和SQL数据库的集成及其应用
2.This paper utilizes ASP technique and SQL database to design and construct the website of dental laboratory center in stomatology hospital.利用ASP技术和SQL数据库设计并构建口腔医院义齿加工中心专业网站。
3.With the help of information control flow model,surveying data ADT,fault tolerant technique for the desgin model,SQL database and the application of virtual machine technology,we establish a stable,practical and general real time survey and control system.动态控制测量有其广泛的应用前景,通过借助信息流测控模型、测量数据ADT数据结构,在具有容错数据通讯的传输模式支持下,结合虚拟机测试环境和SQL数据库的应用,构建一个稳固的、可实用化、通用的动态测量控制系统。
英文短句/例句
1.Method of XML Data Writing SQL DatabaseXML数据写入SQL数据库的方法
2.SQL SERVER Database Design ClusterSQL SERVER集群数据库设计
3.Researching and Application about Storage Structure of SQL Server 2000 DatabaseSQL Server2000数据库文件的恢复
4.SQL SERVER database optimize SQL statementsSQL SERVER数据库中SQL语句的优化
5.Combining DELPHI DataBase and SQL SERVER DataBase;ELPHI数据库与SQL SERVER数据库的连接
6.The Control of Data Integrity in SQL SERVER Database System;SQL SERVER数据库系统中数据完整性的控制
7.Recovery of deleted records from Microsoft SQL Server log file;Microsoft SQL Server数据库中删除数据的恢复
8.How to Ensure Data Security in SQL Database;如何保证SQL Server数据库中数据的安全
9.Adopting ASP data base storage and access component to visit SQL Server data base;谈采用ASP数据库存取组件访问SQL Server数据库
10.Comparison between Access Data Base and SQL Server Data BaseAccess数据库与SQL Server数据库主要功能的比较
11.The information is accessed from the database through SQL.通过SQL从数据库中存取这些信息。
12.They are Java Database Connectivity (JDBC) and J/SQL.它们是“Java数据库连接”(JDBC)和J/SQL。
13.The Blue Print of Data Warehouse. in SQL Server 2000SQL server 2000的数据仓库解决方案
14.The backstage is a SQL Server database server.后台是SQL Server数据库服务器。
15.Information processing systems-Database language SQL with integrity enhancementGB/T12991-1991信息处理系统数据库语言SQL
16.The Analysis and Realization of Database Language SQL;数据库查询语言SQL的语法分析及实现
17.Telecommunication Data Warehouse System Based on SQL Server 2000 and Implementation;SQL Server 2000数据仓库系统及实用技术研究
18.The Research of Experimental Database System Based on VC and SQL Server;基于VC和SQL Server的实验数据库系统研究
相关短句/例句
SQL-databaseSQL-数据库
3)SQL Server DatabaseSQL Server 数据库
4)SQL Server 2000 databaseSQL Server2000数据库
5)SQL Server databaseSQL Server数据库
1.Several kinds of practical approaches that Sql Server database resume;Sql Server数据库数据恢复的几种实用方法
2.Carry out to backup and restore the SQL Server Database in the page of JSP;在JSP页面中实现对SQL Server数据库的备份与恢复
3.Application of Example Teaching Method in the course of SQL Server Database范例教学法在《SQL Server数据库》教学中的应用
6)SQL ServerSQL Server数据库
1.NET remoting technology and SQL Server database to develop storage grid.NET Remoting技术和SQL Server数据库建立存储网格的设计方案,同时给出实现核心模块的部分代码,对其他类型存储网格的设计提供有益的借鉴。
2.The software is based on Windows NT Operating System and SQL Server Database System.考虑到软件可靠性和安全性的要求,调度站软件开发的平台基于Windows NT操作系统和Microsoft SQL Server数据库系统,开发语言采用中文Visual Basic 6。
延伸阅读
ACCESS数据库 什么是Access数据库 数据库是有结构的数据集合,它与一般的数据文件不同,(其中的数据是无结构的)是一串文字或数字流。数据库中的数据可以是文字、图象、声音等。 MicrosoftAccess是一种关系式数据库,关系式数据库由一系列表组成,表又由一系列行和列组成,每一行是一个记录,每一列是一个字段,每个字段有一个字段名,字段名在一个表中不能重复。图1是一个“产品”表的例子。“产品”表由10个记录组成,一个记录占一行,每一个记录由产品ID、产品名称、库存量、订货量、单价和折扣率6个字段组成。“产品ID”是字段名,其下面的1,2等是字段的值。 表与表之间可以建立关系(或称关联,连接),以便查询相关联的信息。Access数据库以文件形式保存,文件的扩展名是DB。 Access97的6种对象 Access97数据库由六种对象组成,它们是表、查询、窗体、报表、宏和模块。 表(Table)——表是数据库的基本对象,是创建其他5种对象的基础。表由记录组成,记录由字段组成,表用来存贮数据库的数据,故又称数据表。 查询(Query)——查询可以按索引快速查找到需要的记录,按要求筛选记录并能连接若干个表的字段组成新表。 窗体(Form)——窗体提供了一种方便的浏览、输入及更改数据的窗口。还可以创建子窗体显示相关联的表的内容。窗体也称表单。 报表(Report)——报表的功能是将数据库中的数据分类汇总,然后打印出来,以便分析。 宏(Macro)——宏相当于DOS中的批处理,用来自动执行一系列操作。Access列出了一些常用的操作供用户选择,使用起来十分方便。 模块(Module)——模块的功能与宏类似,但它定义的操作比宏更精细和复杂,用户可以根据自己的需要编写程序。模块使用VisualBasic编程。