zoukankan      html  css  js  c++  java
  • 写入mssql出现乱码

    1、出现乱码的场景如下:

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------

    1)c#代码如下:

    private int InsertBaseReport(int year, long mainId, Guid? orgId, DateTime repordate, string indictorCode, string dataValue)
    {
    string insertSql =
    $"insert into T_Report_Base{year} (F_MainID,F_OrgID,F_ReportDate,F_IndicatorCode,F_Value,F_LastDateTime) " +
    $"values({mainId},'{orgId}','{repordate}','{indictorCode}','{dataValue}',getdate())";
    return db.Database.ExecuteSqlCommand(insertSql);
    }

    2)数据库字段设计F_Value类型varchar(100)

    3)结果:F_Value字段出现乱码

    2、解决方案:

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------

    1)c#代码修改如下:

    private int InsertBaseReport(int year, long mainId, Guid? orgId, DateTime repordate, string indictorCode, string dataValue)
    {
    string insertSql =
    $"insert into T_Report_Base{year} (F_MainID,F_OrgID,F_ReportDate,F_IndicatorCode,F_Value,F_LastDateTime) " +
    $"values({mainId},'{orgId}','{repordate}','{indictorCode}',N'{dataValue}',getdate())";
    return db.Database.ExecuteSqlCommand(insertSql);
    }

    2)数据库字段设计F_Value类型修改为nvarchar(100)

    3)  将控制面板中->区域 设置更改为中文(简体,中国)

  • 相关阅读:
    Bellman-Ford(BF)和Floyd算法
    Dijkstra实现最短路径
    【图论】连通分量个数(并查集)
    【模拟】n a^o7 !
    【图论】最小生成树
    【搜索DFS】图的深度遍历(dfs)
    【搜索BFS】poj3278--Catch That Cow(bfs)
    【图论】判断给定图是否存在合法拓扑序列
    二叉排序树
    【树】判断给定森林中有多少棵树(简单做法)
  • 原文地址:https://www.cnblogs.com/anibei/p/10747584.html
Copyright © 2011-2022 走看看