登录
首页 » 数据结构 » 从ACCESS文件中提取DBF文件,可以将ACCESS文件中提取DBF文件,并建立一个数据库文件,包括ACCESS文件中的所有表....

从ACCESS文件中提取DBF文件,可以将ACCESS文件中提取DBF文件,并建立一个数据库文件,包括ACCESS文件中的所有表....

于 2022-02-22 发布 文件大小:27.13 kB
0 181
下载积分: 2 下载次数: 1

代码说明:

从ACCESS文件中提取DBF文件,可以将ACCESS文件中提取DBF文件,并建立一个数据库文件,包括ACCESS文件中的所有表.-ACCESS documents from the DBF file extraction can be extracted ACCESS DBF file documents, and the establishment of a database file, including documents, the ACCESS all the tables.

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

发表评论

0 个回复

  • This is a server
    这是聊天系统的服务器端,它控制客户端程序的登录和连接,采用ACCE-This is a server-side chat system, which controls the client program to log in and connect, using ACCE
    2023-07-13 02:20:02下载
    积分:1
  • trigger示范程序
    trigger示范程序-trigger example program
    2022-02-10 13:00:05下载
    积分:1
  • 与清华大学版的《》匹配二叉树的实现:BITREE1.CPP:为主程序,其中实现了递归算法以及非递归算法的前序遍历,中序遍历,后序遍历。TSTACK1.H...
    与清华大学版的《数据结构》匹配二叉树的实现:BITREE1.CPP:为主程序,其中实现了递归算法以及非递归算法的前序遍历,中序遍历,后序遍历。TSTACK1.H: 为头文件,其中定义了一些常量的值,其中也包括了书中第三章的栈的实现,只需要将注解符去掉即可。运行环境为:VC++6 或 TC3-and Tsinghua University version of the "data structure" matching the achievement of a binary tree : BITREE1.CPP : mainly procedures, which achieved a recursive and non- recursive algorithm of algorithms preorder, preorder, after preorder. TSTACK1.H : for the first document, which defines a number of the value of a constant, which also include a third chapter of the book stack the realization simply have the website notes can be removed. Operating environment : VC 6 or TC3
    2023-08-23 23:30:03下载
    积分:1
  • Binary tree structure, the binary tree in order, preorder, postorder
    构造二叉树,对该二叉树中序,先序,后序遍历-Binary tree structure, the binary tree in order, preorder, postorder
    2022-02-07 11:08:56下载
    积分:1
  • 八 方块移动游戏要求从一个含8个字(用1
    八 方块移动游戏要求从一个含8个数字(用1-8表示)的方块以及一个空格方块(用0表示)的3x3矩阵的起始状态开始,不断移动该空格方块以使其和相邻的方 块互换,直至达到所定义的目标状态。空格方块在中间位置时有上、下、左、右4个方向可移动,在四个角落上有2个方向可移动,在其他位置上有3个方向可移 动。例如,假设一个3x3矩阵的初始状态为: 8 0 3 2 1 4 7 6 5 目标状态为: 1 2 3 8 0 4 7 6 5-Eight-box requirements of mobile games from one containing eight numbers (1-8 with express) the box, as well as a space box (with 0) of the 3x3 matrix of the initial start, and constantly move the box to make space its adjacent box and swap until they reach their defined target state. Spaces in the middle position box has the upper and lower, left and right direction of four removable, in the four corners there are two directions can be mobile, in other locations has three movable direction. For example, suppose a 3x3 matrix of the initial state as follows: 803,214,765 target state as follows: 123,804,765
    2022-03-22 21:44:29下载
    积分:1
  • 各种排序算法,包括快速排序、插入排序、选择排序、SHELL排序...
    各种排序算法,包括快速排序、插入排序、选择排序、SHELL排序-various sorting algorithms, including rapid sorting, insertion sort, select, in order of ranking SHELL
    2022-01-27 17:32:23下载
    积分:1
  • 用c做的图的的作业,建立有向图,深度广度搜索,分为递归和非递归方式....
    用c做的图的数据结构的作业,建立有向图,深度广度搜索,分为递归和非递归方式.-C to do with the map data structure operations, the establishment has to map the depth of breadth of search, is divided into recursive and non-recursive way.
    2022-04-09 22:53:22下载
    积分:1
  • Dual
    双线程对一系列随机数进行归并排序,使用MFC的控制台程序-Dual-threaded on a series of random numbers to merge sort, using the Console application in MFC
    2022-03-22 15:48:01下载
    积分:1
  • 这是一个生成全排列的程序,采用最小变化算法,相邻两个序列之间只有两个的次序不同,每交换两个,便形成一个新的序列,速度非常快....
    这是一个生成全排列的程序,采用最小变化算法,相邻两个序列之间只有两个数的次序不同,每交换两个数,便形成一个新的序列,速度非常快.-This is a whole generation with a procedure using the smallest change algorithm sequence between two adjacent only two of several different order every two exchanged a few, it will lead to a new series, very fast.
    2022-12-18 06:35:03下载
    积分:1
  • 的乘法
    应用背景应用数组 可以实现的算法和解决的问题非常多,这里举 一个非常典型的例子一一大整数 乘怯 。这个例子所采用的方法和思想都非常巧妙  。由于计算机的精度是有限的,因此单纯使 用程序设计语言提供的原子数据类型来完成两个大整数的乘法显然是不切实际的。 关键技术可以考虑 用两个数组来分别存储 一些小于 10 的整数 ,这些数字按顺序排列在一起,分别表 示一个大整数的每一位上的数字,于是大整数的储存问题就解决了。然后按照基本乘法规则对这两个 大整数进行运算即可。下面给出了程序的代码。
    2022-02-07 02:59:09下载
    积分:1
  • 696516资源总数
  • 106436会员总数
  • 7今日下载