dbexpress_在Delphi数据库应用程序中使用dbExpress

dbexpress

One of the strengths of Delphi is the support for many databases using several data access technologies: the BDE, dbExpress, InterBase Express, ADO, Borland Data Providers for .NET, to name a few.

Delphi的优势之一是使用多种数据访问技术来支持许多数据库:BDE,dbExpress,InterBase Express,ADO,.NET的Borland数据提供程序。

什么是dbExpress? ( What is dbExpress? )

One of the data connectivity options in Delphi is dbExpress. In short, dbExpress is a light-weight, extensible, cross-platform, high-performance mechanism for accessing data from SQL servers. dbExpress provides connectivity to databases for the Windows, .NET and Linux (using Kylix) platforms.Initially designed to replace the BDE, dbExpress (introduced in Delphi 6), allows you to access different servers - mySQL, Interbase, Oracle, MS SQL Server, Informix.dbExpress is extensible, in that it is possible for third-party developers to write their own dbExpress drivers for various databases.

dbExpress是Delphi中的数据连接选项之一。 简而言之,dbExpress是一种轻量级,可扩展的,跨平台的高性能机制,用于从SQL服务器访问数据。 dbExpress提供与Windows,.NET和Linux(使用Kylix )平台的数据库的连接性.dbExpress最初旨在替代BDE,dbExpress(在Delphi 6中引入)允许您访问不同的服务器-mySQL,Interbase,Oracle,MS SQL Server ,Informix.dbExpress是可扩展的,因为第三方开发人员可以为各种数据库编写自己的dbExpress驱动程序。

One of the most significant features of dbExpress lies in the fact that it accesses databases using unidirectional datasets. Unidirectional datasets do not buffer data in memory -- such a dataset cannot be displayed in a DBGrid. To build a user interface using dbExpress you will need to use two more components: TDataSetProvider and TClientDataSet.

dbExpress的最重要功能之一在于它使用单向数据集访问数据库的事实。 单向数据集不会在内存中缓冲数据-这样的数据集无法显示在DBGrid中 。 要使用dbExpress构建用户界面,您将需要使用另外两个组件:TDataSetProvider和TClientDataSet 。

如何使用dbExpress ( How to Use dbExpress )

Here's a collection of tutorials and articles on building database applications using dbExpress:

这是有关使用dbExpress构建数据库应用程序的教程和文章的集合:

dbExpress Draft SpecificationAn early dbExpress specifications draft. Worth a read.

dbExpress草案规范早期的dbExpress规范草案。 值得一读。

Introduction to ClientDataSets and dbExpressA TClientDataset is a part of any dbExpress applications. This paper introduces dbExpress and the power of ClientDataSets to people who have been using the BDE and are afraid to migrate.

ClientDataSets和dbExpress简介 TClientDataset是任何dbExpress应用程序的一部分。 本文向使用BDE且不愿迁移的人们介绍dbExpress和ClientDataSets的功能。

Additional dbExpress Driver OptionsA list of third-party drivers available for dbExpress

附加的dbExpress驱动程序选项 dbExpress可用的第三方驱动程序列表

Migrating BDE Applications to dbExpressThis PDF goes into extensive detail on issues you may face when migrating applications from BDE components to dbExpress components. It also provides information on performing the migration.

将BDE应用程序迁移到dbExpress本PDF详细介绍了将应用程序从BDE组件迁移到dbExpress组件时可能遇到的问题。 它还提供有关执行迁移的信息。

Create a Reusable Component to Connect Delphi 7 to DB2 with dbExpressThis article shows you how to use IBM DB2 as the database for applications written with Borland Delphi 7 Studio and dbExpress. Specific topics include how to connect the seven dbExpress components to DB2 and use them to build visual forms on top of database tables.

创建一个可重用的组件以使用dbExpress将Delphi 7连接到DB2本文向您展示了如何将IBM DB2用作使用以下代码编写的应用程序的数据库 Borland Delphi 7 Studio和dbExpress。 具体主题包括如何将七个dbExpress组件连接到DB2,以及如何使用它们在数据库表之上构建可视化表单。

翻译自: https://www.thoughtco.com/using-dbexpress-in-delphi-1057716

dbexpress

你可能感兴趣的:(数据库,可视化,java,python,mysql)