如何获得数据库表中某一字段中的以逗号分开的内容?

本文详细介绍了如何使用存储过程、BLL层和UI层进行数据库查询,并将其结果显示在ASP.NET页面上,同时讨论了查询适用范围及注意事项。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

存储过程:

alter procedure sp_Tased
as
select FileUrl from tas where Sid=3

 

BLL层:unnions.cs

        public string Unions_Sel()
        {
            List<unionsInfo> list = null;
            unionsInfo info = null;
            using (SqlDataReader reader = SqlHelper.ExecuteReader(CommandType.StoredProcedure, "sp_Tased", null))
            {
                if (reader != null)
                {
                    list = new List<unionsInfo>();
                    while (reader.Read())
                    {
                        info = new unionsInfo()
                        {
                          
                            FileUrl = reader.GetString(0)
                        };
                        list.Add(info);
                    }
                }
            }
            return info.FileUrl;
        }

 

UI层:unionSelect.aspx

 

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="unionSelect.aspx.cs" Inherits="unionSelect" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="a" runat="server" Text="a"></asp:Label><br />
    </div>
    </form>
</body>
</html>

 

 

后台:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections;
using BLL;

public partial class unionSelect : System.Web.UI.Page
{
    private unions union = new unions();
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            BinGrid();           
        }       
    }
    private void BinGrid()
    {
       string str = union.Unions_Sel();
       string[] s = str.Split(',');
       a.Text = s[2];
    }
}

 

 

 适用范围:仅能选择出字段中的一条记录,不能把该字段中的所有记录都选出来。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值