Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - c B
Search - c B - List
c++builder5.0编程实例: 第4章 数据库编程: 4.1一个简单的数据库应用示例程序 4.2一个数据库组合条件查询程序 4.3一个web网站主页数据库维护程序-c Builder Programming Example : Chapter 4 Database Programming : 4.1 a simple database application procedures examples 4.2 conditions for a combination of database query procedures we 4.3 1 b website database maintenance procedures Home
Date : 2025-12-21 Size : 9.85mb User : 王我

文档管理系统 简介: 本系统由罗松独立自主开发,其他个人、组织不得非法进行拷贝、应用。违者将对其进行经济制裁、即法律责任。对于个人应用,在本人网站上提供了免费的服务。对于各机构组织、法人代表则需与本人商议,经本人同意方可应用。 作者:罗松 版权(c)工职软件开发组 http://cqpps.126.com e_mail:luosong@isofthome.com 实现语言:C 开发环境:Turbo C 系统结构: a:学生档案管理系统 b:职业档案管理系统 操作步骤: 1:进入主页面,按y同意本系统协议方可运行。 2:输入密码:666888 3:以下步骤按提示便可完成。-Document Management System : This system consists of Luo Songbao independent development, and other individuals, organizations shall not illegal copy, Application. Offenders will be subjected to economic sanctions, or legal responsibility. For personal use, in my website offers a free service. For the agencies, with the required legal representative of my deliberations, I agree with the application before. Author : LUO Song Copyright (c) Public level software development group http :// cqpps.126.com Lord : luosong@isofthome.com achieve languages : C development environment : Turbo C system architecture : a : Student File Management System b : Occupational file management systems operation steps : 1 : enter the home page, according y consent agreement before the system running. 2 : Enter
Date : 2025-12-21 Size : 27kb User : 张广旭

)一个PB的应用程序, 能实现以下功能: a.新增员工资料 b.修改员工资料 c.删除员工资料 d.按姓名查找员工资料(能模糊查找, 例如输入"林", 则所有姓或名中含有"林"字的 员工全列出来.) e.系统启动时, 针对今天为该员工生日的, 则自动弹出提示进行祝福. 2) 员工资料的数据必须有: 工号(为主键), 姓名, 出生日期, 入职日期, 部门, 职务 3) 数据库类型为ASA8.0-) A PB application that can realize the following functions: a. Added staff information b. to amend the information c. staff d. delete staff information Staff information search by name (can be fuzzy search, for example, type
Date : 2025-12-21 Size : 247kb User : 林子建

DBSet.ini为数据库配置文件 整个课题有7 个人在做,除了在线考试部分是B/S 模式的,其余的部分(试题添加、试卷 分析……)都是C/S 模式的(开发工具是powerbuilder8.0),我负责在线考试部分,这里只能放出自己这部分的代码,所以不是完整的一个试题库系统。-Configuration file for the database DBSet.ini the whole issue of 7 individuals to do, apart from the online exam is part of B/S mode, while the remaining part (questions added, analysis of papers ... ...) are C/S mode (development tools is powerbuilder8 .0), I am responsible for online exam part can only be released here this part of their own code, therefore, it can not complete a test database system.
Date : 2025-12-21 Size : 282kb User : wxw

最新的sqlite3.6.2源代码,完整版本。sqlite3是一个强大的嵌入式数据库。在嵌入式系统的中广泛使用,比起其他C/S、B/S结构的数据库。sqlite3更简洁,占用资源更少。-Sqlite3.6.2 the latest source code, full version. sqlite3 is a powerful embedded database. Embedded systems in widespread use when compared with other C/S, B/S structure database. sqlite3 more concise, taking up fewer resources.
Date : 2025-12-21 Size : 2.21mb User : 李姚

b+tree 的插入和查询操作,代码比较简练,效率高。缺少删除操作。-b+ tree insertion and query operation, code relatively simple and efficient. The lack of deletion.
Date : 2025-12-21 Size : 3kb User : jj

/// /// /// /// /// /// /// ///// #include<stdio.h> typedef struct Complex {double shi double xu }Complex void CreatComplex(Complex &c,double a,double b) {c.shi=a c.xu=b } void AddComplex(Complex &sum,Complex c1,Complex c2) {sum.shi=c1.shi+c2.shi sum.xu=c1.xu+c2.xu } void SubComplex(Complex &sub,Complex c1,Complex c2) {sub.shi=c1.shi-c2.shi sub.xu=c1.xu-c2.xu } void MulComplex(Complex &mul,Complex c1,Complex c2) {mul.shi=c1.shi*c2.shi-c1.xu*c2.xu mul.xu=c1.shi*c2.xu+c1.xu*c2.shi } void DivComplex(Complex &div,Complex c1,Complex c2) { div.shi=(c1.shi*c2.shi-c1.xu*(-c2.xu))/(c2.shi*c2.shi-c2.xu*(-c2.xu)) div.xu=(c1.shi*(-c2.xu)+c1.xu*c2.shi)/(c2.shi*c2.shi-c2.xu*(-c2.xu)) -/////////////////////////////////////////////// #include<stdio.h> typedef struct Complex {double shi double xu }Complex void CreatComplex(Complex &c,double a,double b) {c.shi=a c.xu=b } void AddComplex(Complex &sum,Complex c1,Complex c2) {sum.shi=c1.shi+c2.shi sum.xu=c1.xu+c2.xu } void SubComplex(Complex &sub,Complex c1,Complex c2) {sub.shi=c1.shi-c2.shi sub.xu=c1.xu-c2.xu } void MulComplex(Complex &mul,Complex c1,Complex c2) {mul.shi=c1.shi*c2.shi-c1.xu*c2.xu mul.xu=c1.shi*c2.xu+c1.xu*c2.shi } void DivComplex(Complex &div,Complex c1,Complex c2) { div.shi=(c1.shi*c2.shi-c1.xu*(-c2.xu))/(c2.shi*c2.shi-c2.xu*(-c2.xu)) div.xu=(c1.shi*(-c2.xu)+c1.xu*c2.shi)/(c2.shi*c2.shi-c2.xu*(-c2.xu))
Date : 2025-12-21 Size : 1kb User : xiaohui

powerbuilder11转换c/s到b/s-powerbuilder11 conversion c/s to the b/s
Date : 2025-12-21 Size : 1.08mb User : jimmy

本文采取多学科的系统分析方法t应用地理信息系统(GIS) 连一计算机新技术-通过对典型塌陷危害区各影响园素进行空间分析. 试图建立一喜缘旨的、系统的岩漆塌陷预澍评价体系和方法。 关键词 缰 强 (GIS) ‘ 堕盟_ 人类活动诱发的岩溶塌陷已成为岩溶区主要地质灾害,由于它的发育受多种因素控制,如 上覆土层的特征、基岩岩溶化程度、岩溶水和孔隙水的动力条件以及-Impact of land-use types on nitrate concentration and d15N in unconfined groundwater in rural areas of Korea Woo-Jung Choi a,b,*, Gwang-Hyun Han c, Sang-Mo Lee d, Goon-Taek Lee d, Kwang-Sik Yoon a,b, Soo-Myung Choi a, Hee-Myong Ro e a Department of Biosystems & Agricultural Engineering, Institute of Agricultural Science & Technology, Chonnam National University, Gwangju 500-757, Republic of Korea b Environmental-Friendly Agriculture Research Center, Chonnam National University, Gwangju 500-757, Republic of Korea c Ecosystem Gas Exchange Team, National Institute for Agro-Environmental Sciences, Kannondai 3-1-3, Tsukuba 305-8604, Japan d National Instrumentation Center for Environmental Management, College of Agriculture and Life Sciences, Seoul National University, Seoul 151-742, Republic of Korea e Department of Applied Biological and Environmental Chemistry, School of Agricultural Biotechnology, Seoul National University, Seoul 151-742, Republic of Korea Received 1 June 20
Date : 2025-12-21 Size : 13.77mb User : 李玲珑

B-tree implementation in C language
Date : 2025-12-21 Size : 21kb User : Noopur Srivastava

以G列分成多个工作表(以宏运行VBA) -Sub aa() Dim a As Integer, b As Integer, c As Integer, sh As Worksheet For a = 2 To [g65536].End(3).Row If Cells(a, 7) <> Cells(a- 1, 7) Then b = a End If c = Range("g:g").Find(Cells(a, 7), , , , , xlPrevious).Row Set sh = Sheets.Add(, Sheets(Sheets.Count)) sh.Name = Sheets("sheet1").Cells(a, 7).Value With Sheets("Sheet1") Sheets("Sheet1").Range(.Cells(b, 1), .Cells(c, 10)).Copy Destination:=sh.[a2] Sheets("Sheet1").Range("a1:j1").Copy Destination:=sh.[a1] a = c End With Sheets("Sheet1").Select Next End Sub
Date : 2025-12-21 Size : 37kb User : flaglong

  通过修改完善教材中的算法3.4,利用栈来实现算术表达式求值的算法。对算法3.4中调用的几个函数要给出其实现过程:   (1) 函数In(c):判断c是否为运算符;   (2) 函数Precede(t1,t2):判断运算符t1和t2的优先级; (3) 函数Operate(a,theta,b):对a和b进行二元运算theta。 程序运行时,输入合法的算术表达式(中间值及最终结果要在0~9之间,可以包括加减乘除和括号),便可输出相应的计算结果。-Revise and improve the algorithm 3.4 in the textbook stack arithmetic expression evaluation algorithm. Several functions called Algorithm 3.4, given the realization of the process: (1) function in (c): Analyzing c whether the operator (2) function Precede (t1, t2): Analyzing operator t1 and t2 priority (3) function Operate (a, theta, b): a and b the binary operations theta. The program is running, enter a valid arithmetic expression (median and the final result to be in the range of 0 to 9, including addition, subtraction and parentheses), you can output the corresponding calculation results.
Date : 2025-12-21 Size : 37kb User : 黄春伶

明仔SQL环境搭建教程 目录: (一) SQL安装常识 (二)什么是 附加数据库 和新 建立数据库 以及的区别 (三)数据库导入与导出 (四)数据库收缩与分离 (五)数据库备份/还原 (六)(安装常见错误 (七)如何测试SQL (八)ACCESS转化成SQL2000 (九)企业版本也能装在XP上-Ming Tsai SQL environment to build tutorial directory: (A) SQL installation knowledge (B) What is Additional Database and the new Create Database and the difference (C) import and export (Four) contraction and separation (Five) backup/restore (F) (installation of common errors (Vii) How to test SQL (Eight) ACCESS converted into SQL2000 (Nine) Enterprise version can also be installed on XP
Date : 2025-12-21 Size : 29kb User : 吴飞
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.