在ASP.NET中拆分数据

本文关键字:拆分 数据 NET ASP | 更新日期: 2023-09-27 18:08:49

我试图从我的本地数据库显示列到下拉列表。问题是,我需要拆分数据,这样它们就不会全部显示在一行中。我使用";"分隔数据,然后使用split(";")方法分隔它们。我已经尝试了代码,我已经写了下面,但它不工作。如有任何帮助,不胜感激。

public string DisplayTopicNames()
{
    string topicNames = "";
    // declare the connection string 
    string database = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|/Forum.accdb;Persist Security Info=True";
    // Initialise the connection 
    OleDbConnection myConn = new OleDbConnection(database);
    //Query
    string queryStr = "SELECT TopicName FROM Topics";
    // Create a command object 
    OleDbCommand myCommand = new OleDbCommand(queryStr, myConn);
    // Open the connection 
    myCommand.Connection.Open();
    // Execute the command 
    OleDbDataReader myDataReader = myCommand.ExecuteReader();
    // Extract the results 
    while (myDataReader.Read())
    {
        for (int i = 0; i < myDataReader.FieldCount; i++)
            topicNames += myDataReader.GetValue(i) + " ";
        topicNames += ";";
    }
    //Because the topicNames are seperated by a semicolon, I would have to split it using the split()
    string[] splittedTopicNames = topicNames.Split(';');
    // close the connection 
    myCommand.Connection.Close();
    return Convert.ToString(splittedTopicNames);
}

在ASP.NET中拆分数据

您只返回表中的一列。
没有理由在字段计数上使用for循环(它总是1)
相反,您可以使用List(Of String)来保存找到的行返回的值。
然后返回此列表,用作DropDownList

的数据源。
List<string> topicNames = new List<string>();
// Extract the results 
while (myDataReader.Read())
{
    topicNames.Add(myDataReader.GetValue(0).ToString();
}
....
return topicNames;

但是,不清楚字段TopicName是否包含由分号分隔的字符串。
在这种情况下,你可以这样写:

List<string> topicNames = new List<string>();
// Extract the results 
while (myDataReader.Read())
{
    string[] topics = myDataReader.GetValue(0).ToString().Split(';')
    topicNames.AddRange(topics);
}
...
return topicNames;

如果您希望返回字符串数组,那么只需将列表转换为数组

return topicNames.ToArray();

编辑
当然,返回数组或List(Of String)需要更改方法的返回值

 public List<string> DisplayTopicNames()
 {
     ......
 }

 public string[] DisplayTopicNames()
 {
     ......
 }

如果您仍然希望返回以分号分隔的字符串,那么以这种方式更改返回语句

 return string.Join(";", topicNames.ToArra());

除非我疯了,否则像这样的东西应该可以工作:

while (myDataReader.Read())
{
    for (int i = 0; i < myDataReader.FieldCount; i++)
        ddl.Items.Add(myDataReader.GetValue(i))
}

其中ddl是您的DropDownList的名称。如果您的ddl在这里不可用,那么将它们添加到List<string>集合中并返回该集合。这段代码现在可能变得无关紧要了:

//Because the topicNames are seperated by a semicolon, I would have to split it using the split()
string[] splittedTopicNames = topicNames.Split(';');
// close the connection 
myCommand.Connection.Close();
return Convert.ToString(splittedTopicNames);

但是,最重要的是,我想为你重组一下代码,因为你需要利用像using这样的东西。

public string DisplayTopicNames()
{
    string topicNames = "";
    // declare the connection string 
    string database = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|/Forum.accdb;Persist Security Info=True";
    // Initialise the connection 
    using (OleDbConnection myConn = new OleDbConnection(database))
    {
        myConn.Open();
        // Create a command object 
        OleDbCommand myCommand = new OleDbCommand("SELECT TopicName FROM Topics", myConn);
        // Execute the command 
        using (OleDbDataReader myDataReader = myCommand.ExecuteReader())
        {
            // Extract the results 
            while (myDataReader.Read())
            {
                for (int i = 0; i < myDataReader.FieldCount; i++)
                {
                    ddl.Items.Add(myDataReader.GetValue(i));
                }
            }
        }
    }
    // not sure anything needs returned here anymore
    // but you'll have to evaluate that
    return "";
}

您想要利用using语句的原因是为了确保存在于DataReaderConnection中的非托管资源得到正确处置。当离开using语句时,它将自动在对象上调用Dispose。此语句仅用于实现IDisposable的对象。

我想这应该行得通:

public List<string> DisplayTopicNames()
{
    List<string> topics = new List<string>();
    // Initialise the connection 
    OleDbConnection conn = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|/Forum.accdb;Persist Security Info=True");
    OleDbCommand cmd = new OleDbCommand("SELECT TopicName FROM Topics");
    using(conn)
    using(cmd)
    {
        cmd.Connection.Open();
        // Execute the command 
        using(OleDbDataReader myDataReader = cmd.ExecuteReader())
        {
            // Extract the results 
            while(myDataReader.Read())
            {
            topics.Add(myDataReader.GetValue(0).ToString());
        }
    }
}
return topics;

}