-
用Eclipse里的SWT的Table控件实现对数据库的连接,并显示数据库里面的内容...
用Eclipse里的SWT的Table控件实现对数据库的连接,并显示数据库里面的内容-Eclipse
- 2022-03-20 10:24:49下载
- 积分:1
-
database attachment very good subject
数据库实习的很好的课题-database attachment very good subject
- 2022-01-25 14:40:15下载
- 积分:1
-
literacy DAO
DAO读写-literacy DAO
- 2023-01-15 21:15:03下载
- 积分:1
-
数据结构——链表(双向循环链表)
双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed!
");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
- 2022-02-14 07:06:11下载
- 积分:1
-
data structure to solve the problem of Josephus code, only the source code, we u...
数据结构中解决约瑟夫环问题的代码,里面只有源代码,大家用TC2编译一下就可以用了:)。-data structure to solve the problem of Josephus code, only the source code, we use TC2 compiler can use it with a :).
- 2022-08-06 18:26:20下载
- 积分:1
-
经典的C源集合
经典收藏c源程序-classic collections c source
- 2022-02-26 15:27:41下载
- 积分:1
-
实现的功能是把数据库中的记录显示到列表视图中,可以进行记录添加、删除、修改、查询等操作...
实现的功能是把数据库中的记录显示到列表视图中,可以进行记录添加、删除、修改、查询等操作-the functions of the database records to the list view and can be recorded to add, delete, modify, search operation
- 2022-10-20 20:55:04下载
- 积分:1
-
转换成汉字大写金额
转换成汉字大写金额-converted into the amount of Chinese capital
- 2022-12-11 09:40:03下载
- 积分:1
-
登录脚本,PHP连接数据库的使用。
login sript .PHP usefull to connect DB
- 2022-12-11 00:25:03下载
- 积分:1
-
张涛,图书馆管理系统ASP Studio V3.0,很实用
张涛工作室ASP图书管理系统V3.0,还不错挺实用的-Zhang Tao, library management system ASP Studio V3.0, very good practical
- 2022-02-01 20:10:31下载
- 积分:1