gpt4 book ai didi

C#通过用户控件连接mysql

转载 作者:行者123 更新时间:2023-11-29 01:50:58 25 4
gpt4 key购买 nike

嘿,伙计,我是 C# 新手。

我的问题是,是否可以连接到数据库(通过 webusercontrol)。

我正在尝试列出值来自数据集的位置

喜欢

<div>
<ul>
<li><a href="#">This value comes from database tabel</a></li>
<li><a href="#">This 1 too</a></li>
<li><a href="#">and this 1 too</a></li>
</ul>
</div>

执行此操作的最佳方法是什么?

用户控制?还是其他方式?

最佳答案

所以基本上,如果您有一个事件的数据库,您应该首先从中获取数据。

private static string connString = "server=127.0.0.1; userid=yourUserHere; password=youPasswordHere; database=yourDatabaseNameHere";
public static DataTable SelectData(MySqlCommand command)
{
try
{
DataTable dataTable = new DataTable();

using (MySqlConnection connection = new MySqlConnection())
{
connection.ConnectionString = connString;
connection.Open();

command.Connection = connection;
MySqlDataReader reader = command.ExecuteReader();
dataTable.Load(reader);

return dataTable;
}
}
catch (MySqlException e)
{
Console.Write(e.Message);
return null;
}
}

然后在上下文中,您需要使用 SQL 行调用此方法。你应该总是使用参数化查询来最小化 SQL 注入(inject)等的风险。您还需要将您拥有的信息从数据表转换为列表(如果那是您想要的)。像这样:

public List<string> dataTableToString(DataTable table)
{
List<string> Labels = new List<string>();
foreach (DataRow row in table.Rows)
{
//index of row you want returned in the list
Labels.Add(row[2].tostring())
}
return labels
}
public List<string> whateverInformationYouWantHere(string labelID,)
{
MySqlCommand command = new MySqlCommand();
command.CommandText = "SELECT * FROM LABELS WHERE LabelID = @labelID";
command.Parameters.AddWithValue("labelID", labelID);
return dataTableToString(Databasehandler.SelectData(command));
}

然后您所要做的就是创建一个 foreach 循环并将所有标签项插入您的 UL 中。 (如果您有任何疑问,请随时提出)。

关于C#通过用户控件连接mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43468042/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com