登录
首页 » 数据结构 » 访问Sybase数据库的dblib(VC)的包装,它是非常简单的使用。

访问Sybase数据库的dblib(VC)的包装,它是非常简单的使用。

于 2022-11-14 发布 文件大小:10.48 kB
0 139
下载积分: 2 下载次数: 1

代码说明:

访问sybase 数据库的dblib (VC)封装,使用起来非常简单。-visit sybase database dblib (VC) Packaging, it is very simple to use.

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

发表评论

0 个回复

  • A fart
    阿屁虎网站游戏算法,准确性大,保证赚钱,-A fart-hu site game algorithm, the accuracy of large, guaranteed to make money,
    2023-08-30 23:10:03下载
    积分:1
  • 这是一个取得网卡全球物理号的源码,希望对你有用
    这是一个取得网卡全球物理号的源码,希望对你有用-This is a global physical network adapter to obtain its source code, I hope useful for you
    2022-01-30 14:26:43下载
    积分:1
  • 堆栈之后缀表达式求值
    此程序用的是后缀表达式求值的方法,其中用到了一个栈,而中缀表达式求值需用到两个栈(操作数栈和操作符栈),所以阅读程序前提是了解中缀表达式和后缀表达式 之间的转换,和后缀表达式求值的过程。关于他们之间的转换,我的概括为:中缀表达式:a*(b+c)-d/f  ,先做b+c,即bc+;再做a*(b+c),即abc+*;然后做d/f,即df/; 最后做a*(b+c)-d/f,得abc+*df/-。关于后缀表达式求值过程请参照你的《数据结构指导书》P60~62(下文所指参照页均在此书)。程序里中有些我说的可有可无的东西,我已经说明 程序里只给出了+ - * / 四种运算,其它运算符若需要, 可向程序里插入。你的指导书堆栈实验里提示用到了“运算符重载”,所以添加其他运算时,有可能用到重载,但这里的四则运算我没用到,运算符重载是很重要的
    2022-11-10 19:15:04下载
    积分:1
  • 求无向图连通分支_dfs实现,很好用,希望和大家分享
    求无向图连通分支_dfs实现,很好用,希望和大家分享-For undirected graph connectivity _dfs branch to achieve
    2022-10-16 07:00:03下载
    积分: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
  • 栈队列
    数据结构栈队列-车场管理-queue data structure stack-Yard Management
    2022-02-16 01:42:40下载
    积分:1
  • 程序存储问题:设有n 个程序{1,2,…, n }要存放在长度为L的磁带上。程序i存放在磁带上的长度是Li ,1≤i≤n 程序存储问题要求确定这n 个程序在磁带...
    程序存储问题:设有n 个程序{1,2,…, n }要存放在长度为L的磁带上。程序i存放在磁带上的长度是Li ,1≤i≤n 程序存储问题要求确定这n 个程序在磁带上的一个存储方案,使得能够在磁带上存储尽可能多的程序。 编程任务: 对于给定的n个程序存放在磁带上的长度,编程计算磁带上最多可以存储的程序数。 数据输入:由文件input.txt给出输入数据。第一行是正整数n,表示文件个数。接下来的1 行中,有n 个正整数,表示程序存放在磁带上的长度。 结果输出: input.txt output.txt 6 50 5 2 3 13 8 80 20 -program storage problem : There n procedures (1,2, ..., n) to be stored in the length of the L tape. I kept in the proceedings on the tape length is Li, 1 i n storage procedures to seek to establish that n procedures on tape storage of a program that allows the tape to store as much as possible the procedure. Programming tasks : to the n procedures stored in the tape length, calculated programming on tape can store up to the number of procedures. Data input : from the document input.txt given input data. The first line is a positive integer n, said the document number. Following a visit, n is an integer, said procedures stored on tape length. Results output : input.txt output.txt 6 50 5 2 3 13 8 80 20
    2023-01-10 04:30:04下载
    积分:1
  • 生活的用户名可用性检查
    应用背景此源代码将保存到用户表前检查该用户名可用性。这很重要,这样用户可以触发,如果数据已经存在。这是使用Ajax,所以它不会刷新页面,显示响应如果存在或不。希望它能帮助。谢谢你。关键技术技术和组件的选择:1 PHP2。MySQLjQuery的Ajax 3 /HTML 45 CSS6 Ajax7。自举
    2022-06-15 15:30:06下载
    积分:1
  • 专家抽取系统1是用Delphi 6开发的一个biddi…
    专家抽取系统1.0 是用Delphi6.0 开发的一款用于招投标,评审过程中从专家库中抽取专家的软件。可以将抽取结果导入到Excel或Word文档中-experts Extraction System 1.0 is developed using Delphi 6.0 for one of the bidding, The accreditation process from a pool of experts from a software expert. The results can be taken into the Word or Excel document
    2022-03-09 18:49:08下载
    积分:1
  • 各类排序算法比较
    本代码实现并比较了直接插入排序,选择排序,冒泡排序,快速排序,两路合并排序,堆排序,同时可视化比较了他们的时间复杂度,代码完整可行,有可执行文件直接运行。
    2022-10-10 13:35:03下载
    积分:1
  • 696518资源总数
  • 105531会员总数
  • 4今日下载