将数据绑定到CheckedListBox

将数据绑定到CheckedListBox

本文介绍了将数据绑定到CheckedListBox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我想知道如何从CheckedListBox数据库中的表中查看数据.

给定三个表:
users:ID,用户名,密码
privileges:pri_num,特权
user_privileges:id,pri_num

user_privileges提供了连接机制.

我想查看给定用户的可用特权列表,并将选中的(启用的)特权保存到数据库中.问题,无论您尝试了什么,都已经在此处了 [




Hello,

I want to know how to view data from a table in a database in CheckedListBox.

Given three tables:
users: id, username, password
privileges: pri_num, privilege
user_privileges: id, pri_num

user_privileges provides the mechanism for joining.

I would like to view the list of available privileges for a given user and save the checked (enabled) privileges to the database.

解决方案




这篇关于将数据绑定到CheckedListBox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 22:34