登录
首页 » 数据结构 » 用C#语言书写的用于Microsoft SQL Server数据库备份和恢复的类,带进度条...

用C#语言书写的用于Microsoft SQL Server数据库备份和恢复的类,带进度条...

于 2022-07-04 发布 文件大小:1.39 kB
0 97
下载积分: 2 下载次数: 1

代码说明:

用C#语言书写的用于Microsoft SQL Server数据库备份和恢复的类,带进度条-With C# Language written for Microsoft SQL Server database backup and recovery class, with the progress bar

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

发表评论


0 个回复

  • 一个通用的oracle OCI开发程序包
    一个通用的oracle OCI开发程序包-A generic oracle OCI development package
    2022-04-29 14:42:13下载
    积分:1
  • 订单系统 是同学自己做的 希望对大家有用
    订单系统 是同学自己做的 希望对大家有用-failed to translate
    2023-08-04 09:40:03下载
    积分:1
  • 清华大学版的一下试题资料,望对大家有帮助
    清华大学版数据结构的一下试题资料,望对大家有帮助-Tsinghua University, version data structure questions about the information, hope for all of us help
    2022-02-10 16:06:41下载
    积分:1
  • Volume 3 for sorting and searching, this is the book of a revised edition, it is...
    卷3为分拣和搜索,这是本书的第1个修订版,它是对计算机分拣和搜索的一流技术的最全面的研究,它扩展了卷1中数据结构的处理方法,将大小数据库以及内存和外部存储都包含在内。本书包括对计算机方法仔细检查的选择方案,和其效率的大量分析。本书该版的独特之处在于优化了的分拣,以及对通用散列法和排列法的新的理论论述。-Volume 3 for sorting and searching, this is the book of a revised edition, it is sorted on the computer and search the first-class technology of the most comprehensive study of its expansion Volume 1 data structure handling methods, the size of the database and external memory and storage are included. The book including computer methods carefully examined the options, and its efficiency lot of analysis. The book version of the unique features of the optimization is sorted, and right hash law and common law with the new theoretical expositions.
    2022-02-21 11:03:10下载
    积分:1
  • ADO访问手术
    ado and access operatiion such as insert delet update -ado and access operatiionsuch as insert delet update
    2023-08-14 09:45:03下载
    积分:1
  • 课程设计
    数据结构课程设计-curriculum design data structures!
    2022-03-17 16:10:23下载
    积分:1
  • 导出Access、Sql Server库表到Html vb源吗,调试通过
    导出Access、Sql Server数据库表到Html vb源吗,调试通过-derived Access, SQL Server database tables to Html vb source yet, through debugging
    2023-03-18 04:55:04下载
    积分:1
  • 提前登录系统
    你好 我开发了此应用程序只用了 1 天,我相信你们都喜欢这个应用程序,并且学到很多东西特别是初学者。 谢谢你 J@n@k
    2022-03-01 00:27:17下载
    积分:1
  • 停车场管理系统的源代码
    由于停车场是一个狭窄通道,而且只有一个大门可供汽车进出,问题要求汽车停车场内按车辆到达时间的先后顺序,依次由北向南排列。由此很容易联想到数据结构中的堆栈模型,因此可首先设计一个堆栈,以堆栈来模拟停车场,我设计用顺序存储结构来存储停车场内的车辆信息,并给车辆按进栈顺序编号,当停车场内某辆车要离开时,在他之后进入的车辆必须先退出车场为它让路,待该辆车开出大门外,其他车辆再按原次序进入停车场。这是个一退一进的过程,而且让道的汽车必须保持原有的先后顺序,因此可再设计一个堆栈,以之来暂时存放为出站汽车暂时让道的汽车。当停车场满后,继续进来的汽车需要停放在停车场旁边的便道上等候,若停车场有汽车开走,则按排队的先后顺序依次进站,最先进入便道的汽车将会最先进入停车场,这完全是一个先进先出模型,因此可设计一个队列来模拟便道,队列中的数据元素设计成汽车的车牌号,并以链表的形式存储。另外,停车场根据汽车在停车场内停放的总时长来收费的,在便道上的时间不计费,因此必须记录车辆进入停车场时的时间和车辆离开停车场时的时间,然后计算、显示费用情况。
    2023-04-01 23:20:03下载
    积分:1
  • 题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。 概要设计 1、顺序扫描中缀算术表达式,当读到字时直接将其送至输出队列中; 2、当读到...
    题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。 概要设计 1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中; 2、当读到运算符时,将栈中所有优先级高于或等于该运算符弹出,送至输出队列中,再将当前运算符入栈; 3、当读入左括号时,即入栈; 4、当读到右括号时,将靠近栈顶的第一个左括号上面的运算符全部一次弹出,送至输出队列中,再删除栈中的左括号。 5、使用VS栈来存储读入的操作和运算结果,然后进行数字字符到数值的转换。 -Title: Design of a topic, presentation operator priority method with arithmetic expression evaluation process. Summary of design 1, the order of scanning arithmetic infix expressions, when they read numbers directly to the output queue 2, when they read operator, it will stack all priority higher than or equal to the operator pop-up , sent to the output queue, and then the current operator入栈 3, when read left brackets, that is, when入栈 4, when they read the right brackets, it will be near the Top-left of the first operator in brackets above All a pop-up, sent to the output queue, and then delete stacks of left brackets. 5, the use of VS stack to store read operation and computing the results of numeric characters and then proceed to the numerical co
    2022-03-18 20:45:34下载
    积分:1
  • 696518资源总数
  • 104629会员总数
  • 9今日下载