登录
首页 » 数据结构 » delphi7 的 mydac 数据库组件

delphi7 的 mydac 数据库组件

于 2023-04-08 发布 文件大小:3.34 MB
0 115
下载积分: 2 下载次数: 1

代码说明:

MySQL 数据访问 ComponentsMySQL 数据访问组件 (MyDAC) 是一种组件库,从 Delphi、 C + + 生成器、 拉撒路 (和自由 pascal 语言) 提供对 MySQL 的直接访问 Windows、 Linux、 Mac OS X、 Android、 iOS FreeBSD 在 32 位和 64 位平台。基于 MyDAC 的应用程序可以直接连接到 MySQL 服务器,或通过 MySQL 客户端库的工作。MyDAC 旨在帮助开发更快和更清洁的 MySQL 数据库应用程序的程序员。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • [问题描述] 将N个关键字去整的记录进行整序, 以使所有关键字为非负的记录排在关键字为负的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N...
    [问题描述] 将N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N) [输入] 待排序记录个数,各关键字的值。 [输出] 关键字从正负分开,正数在前 [存储结构] 待排序记录顺序存储。 [算法的基本思想] 快速排序算法每次任取一个记录的关键字为标准,将其余记录分为两组将,N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前。 #include using namespace std #define MAXNUM 100//设文件的最长可能长度 void sort(int* keys, const int len)//排序 -[Problem Description] N keyword to the integer sequence the entire record. keyword so that all non-negative Records with the keyword for the negative record, at least require the use of the additional space and time complexity of the algorithm is O (N) [imported] to be sort record number, The value of the keyword. [Output] keyword separate from the pluses and minuses are several former [storage structure] scheduling records to be stored sequence. [Algorithm for the basic idea] quick sort algorithm each time a record for any keyword as a standard, The remaining records will be divided into two groups, N-keyword
    2022-03-17 21:15:57下载
    积分:1
  • 具有n 个顶点的无向网络G的每个生成树刚好具有n
    具有n 个顶点的无向网络G的每个生成树刚好具有n-1条边,采用三种不同的贪婪策略来选择这n-1条边。-n vertices to the non-G network spanning tree just with each n-1 edge, using three different strategies to choose greed that n-1 edge.
    2022-04-16 04:01:43下载
    积分:1
  • 详细描述了如何创建单循坏链表的方法以及操作
    数据结构 详细描述了如何创建单循坏链表的方法以及操作-Data structure described in detail how to create a single through the bad list of methods and operations
    2022-05-30 19:47:58下载
    积分:1
  • 金属融化问题
    南开大学  金属融化问题  辛运帏老师  C++实现  含测试样例
    2022-05-17 21:26:23下载
    积分:1
  • 有一个魔王总是使用自己的一种非常精练而抽象的语言讲话,没有人能听得懂,但他的语言是可以逐步解释成人能听懂的语言,因为他的语言是由以下两种形式的规则由人的语言逐步...
    有一个魔王总是使用自己的一种非常精练而抽象的语言讲话,没有人能听得懂,但他的语言是可以逐步解释成人能听懂的语言,因为他的语言是由以下两种形式的规则由人的语言逐步抽象上去的: (1) α→β1β2…βm (2) (θδ1δ2…δn)→θδnθδn-1…θδ1θ 在这两种形式中,从左到右均表示解释。试写一个魔王语言的解释系统,用下述两条具体规则和上述规则形式(2)实现,把他的话解释成人能听得懂的话。 (1) B→tAdA (2) A→sae 设大写字母表示魔王语言的词汇;小写字母表示人的语言词汇;希腊字母表示可以用大写字母或小写字母代换的变量。魔王语言可含人的词汇。测试用例见题集p97。
    2022-04-17 01:02:37下载
    积分:1
  • 中的平衡二叉树的代码
    数据结构中的平衡二叉树的代码- In construction of data balance two forks tree s code
    2022-04-13 00:54:14下载
    积分:1
  • Aplicacion de una biblioteca , falta un poco de codigo pero esta a mas de un 70
    Aplicacion de una biblioteca , falta un poco de codigo pero esta a mas de un 70-Aplicacion de una biblioteca , falta un poco de codigo pero esta a mas de un 70
    2023-06-25 06:00:04下载
    积分:1
  • 1.[问题描述] 编写递归算法,计算二叉树中叶子点的目 [输入] 按照先序序列的顺序输入该点的内容。其输入abd eh cf i g ....
    1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,中序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点。根据左右子树的最后一个结点计算出二叉树中叶子结点的数目。 程序如下: #include #include #include"stdlib.h" -1. [Description of the issue] to prepare recursive algorithm, Binary calculation leaves the number of nodes [imported] in accordance with the first order input sequence in the order of the node contents. Input abd eh i g cf. [Output] by the order sequence output, the results of the output; dbheaficg calculated Binary leaf node to the number four [storage structure] Table 2 forks storage [ The basic idea algorithm] recursive method and traverse binary tree. First established binary tree root node, and then to build their son around the tree, the tree until the loopholes, which preorder binary tree, Li first times the left sub-tree, right af
    2023-08-31 16:00:04下载
    积分:1
  • 酒店管理系统
    酒店,酒店管理系统,第一眼就有是没有直接的关系和通信系统,但语音通信系统,作为非常重要的方式来使用这一行业中的服务位置已经很特别,早期和简单的酒店管理,其中包括三个部分的内容: 检查-中 ( 登录),检查 (签出),电话服务。与社会的发展,客户,酒店对酒店服务质量的要求继续增加和现代计算机管理、 宾馆、 酒店管理概论并逐渐演变成一个集合的许多服务的一个全面、
    2022-03-02 12:39:58下载
    积分:1
  • Self
    自制C语言贪食蛇小游戏,里面包含两个文件,一个是源程序,一个是图形化驱动,只要两个文件放在一个目录下即可运行,语句简单易懂-Self-made C-Snake game, which contains two files, one source, one is graphical driver, as long as two files in a directory to run, easy to understand statements
    2022-07-19 00:09:57下载
    积分:1
  • 696518资源总数
  • 105949会员总数
  • 22今日下载