“System.string到system.guid强制转换无效”错误处理

本文解决了一个在使用object类型参数进行SQL查询时出现的问题,通过修改参数类型和使用Guid函数解决了强制转换错误,并优化了代码实现。

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

描述:

利用id查找username时查询命令cmd.ExecuteScalar()报错,

public stringGetUsernameFromID(object userId)

    {

        stringusername = "";

        if(userId == null) returnusername;

        System.Data.SqlClient.SqlConnection conn = newSystem.Data.SqlClient.SqlConnection(TSConnectionString);

        System.Data.SqlClient.SqlCommand cmd = newSystem.Data.SqlClient.SqlCommand(

            "SELECT [UserName] FROM [TravelService].[dbo].[aspnet_Users] " +

            "WHERE [UserId] = @userid ", conn);

        cmd.Parameters.Add("@userid",System.Data.SqlDbType.UniqueIdentifier).Value = userId;

        try

        {

            conn.Open();

            username = (string)cmd.ExecuteScalar();

        }

        catch(System.Data.SqlClient.SqlException e)

        {

            thrownew System.Configuration.Provider.ProviderException("T¤¡§¨´Yid¨°Ì?®?¡ì?ê¡§commonclassê?\n\n¨¨º??¡éaêo" + e.Message);

        }

        finally

        {

            conn.Close();

        }

        if(username == null) username = "";

        returnusername;

    }

 

提示说userId参数赋值时强制转换成guid类型无效,userId参数为函数参数,调用时是用object类型变量传递的:

        objectuserid = (object)DetailsView1.Rows[33].Cells[1].Text;

        DetailsView1.Rows[34].Cells[1].Text =cc.GetUsernameFromID(userid);

处理方法:

将调用时变量修改一下,直接用字符串变量取值并用guid函数转类型传递:

string userid = DetailsView1.Rows[33].Cells[1].Text;

DetailsView1.Rows[34].Cells[1].Text =cc.GetUsernameFromID(new Guid(userid));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值