如何安装delphi2007的mysql控件

 我来答
就烦条0o
2016-07-10 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46492
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部
新建数据库/**//*

MySQL Data Transfer

Source Host: localhost

Source Database: blog

Target Host: localhost

Target Database: blog

Date: 2008/04/15 16:18:41

*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------

-- Table structure for posts

-- ----------------------------

CREATE TABLE `posts` (

`id` int(10) unsigned NOT NULL auto_increment,

`title` varchar(50) default NULL,

`body` text,

`created` datetime default NULL,

`modified` datetime default NULL,

PRIMARY KEY (`id`)

) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

-- ----------------------------

-- Records

-- ----------------------------

INSERT INTO `posts` VALUES (’1’, ’The title’, ’This is the post body.’, ’2008-04-08 11:51:46’, null);

INSERT INTO `posts` VALUES (’2’, ’A title once again’, ’And the post body follows.’, ’2008-04-08 11:51:46’, null);

INSERT INTO `posts` VALUES (’3’, ’Title strikes back’, ’This is really exciting! Not.’, ’2008-04-08 11:51:46’, null);

Delphi2007中新建工程,页面上追加TSimpleDataSet及TDataSource控件。

然后做如下设置

字段直接可以拉到页面上的,如下:

设置各个控件间的DataSource属性。后台代码:

使用 DbExpress 的时候总感觉很别扭。网上也有很多人说这套组件有潜在BUG存在。不知道是不是真的有李维大师所说的那样好。

注意:关于事务:使用StartTransaction方法的话需要用到TTransactionDesc类,这需要在开头uses部追加SqlExpr。

如果换成BeginTransaction方法的话需要用到TDBXTransaction类,这需要在开头uses部追加DBXCommon。

从警告信息可以判断,Delphi2007已经开始不推荐使用StartTransaction方法做事务处理了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式