0

我对以下问题感到困惑;

我有一个 C# (WindowsForms) 应用程序,我连接到 SQL Server DB 并且对 INSERT、SELECT、UPDATE... 没有任何问题,直到我开始使用数字数据;

这个应用程序的目的是管理员工、他们的合同、工作率、合同期限、小时费率......并用它做一些有趣的计算,没什么神奇的。

基本上,我需要在我的数据库中存储一些格式为“0000,0000”的值(十进制?双精度?浮点数?)。

  • 在我的数据库中,我已经将我的表设置为我需要将这些“000,0000”值转换为十进制的所有列

  • 在我的表单中,我没有为我的文本框指定任何特定属性,

  • 要插入,我使用我定义十进制参数的方法

        public void createNewContract(int employeeId, string agency, string role, string contractType, string startDate,
        string endDate, string lineManager, string reportTo, string costCenter, string functionEng, string atrNo, string atrDate, string prNo, string prDate,
        string poNo, string poDate, string comments, decimal duration, decimal workRatePercent, string currency, decimal hourlyRate, decimal value)
    {
        if (conn.State.ToString() == "Closed")
        {
            conn.Open();
        }
        SqlCommand newCmd = conn.CreateCommand();
        newCmd.Connection = conn;
        newCmd.CommandType = CommandType.Text;
        newCmd.CommandText = "INSERT INTO tblContracts (CreatedById, CreationDate, EmployeeId, Role, ContractType, StartDate, "
        + "EndDate, Agency, LineManager, ReportTo, CostCenter, FunctionEng, AtrNo, AtrDate, PrNo, PrDate, PoNo, PoDate, Comments, Duration, WorkRatePercent, Currency, HourlyRate, Value)"
        + "VALUES ('" + connectedUser.getUserId() + "','" + DateTime.Now.ToString("dd/MM/yyyy hh:mm:ss") + "','" + employeeId + "','" + role + "','" + contractType
        + "','" + startDate + "','" + endDate + "','" + agency + "','" + lineManager + "','" + reportTo + "','" + costCenter + "','" + functionEng + "','" + atrNo + "','" + atrDate + "','" + prNo
         + "','" + prDate + "','" + poNo + "','" + poDate + "','" + comments + "','" + duration + "','" + workRatePercent + "','" + currency + "','" + hourlyRate + "','" + value + "')";
        newCmd.ExecuteNonQuery();
        MessageBox.Show("Contract has been successfully created", "Completed", MessageBoxButtons.OK, MessageBoxIcon.Information);
    }
    

(通过这种方法,我只需插入 00,0000 持续时间(nb 小时)、工作率百分比、小时费率(货币货币)和值(货币货币))

  • 为了捕获我的文本框值并通过我的方法“createNewContrat”发送它们,我尝试了 Convert.ToDecimal(this.txtDuration.Text) 和许多其他对我来说似乎不错的东西,但我无法理解机制,我我当然没有使用最实用/最聪明的解决方案......

我不断收到以下错误;

System.FormatException:Le format de la chaîne d'entrée est 不正确。= 输入/输入字符串的格式不正确
à System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
à System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt)
à System.Convert.ToDecimal(字符串值)

你会推荐什么?

4

2 回答 2

1

首先,using在处理和所有其他实现的类时SqlConnection总是SqlCommand使用它,IDisposable只需阅读更多关于它的信息。

第二件事,始终使用参数,SqlCommand并且永远不要将值作为字符串传递给 sql 字符串。这是一个严重的安全问题。除了这些参数之外,还可以使您的代码人性化!

// Always use (using) when dealing with Sql Connections and Commands
using (sqlConnection conn = new SqlConnection())
{
    conn.Open();

    using (SqlCommand newCmd = new SqlCommand(conn))
    {
        newCmd.CommandType = CommandType.Text;

        newCmd.CommandText = 
              @"INSERT INTO tblContracts (CreatedById, CreationDate, EmployeeId, Role, ContractType, StartDate, EndDate, Agency, LineManager, ReportTo, CostCenter, FunctionEng, AtrNo, AtrDate, PrNo, PrDate, PoNo, PoDate, Comments, Duration, WorkRatePercent, Currency, HourlyRate, Value) 
              VALUES (@UserID, @CreationDate, @EmployeeID, @Role.....etc)";

        // for security reasons (Sql Injection attacks) always use parameters
        newCmd.Parameters.Add("@UserID", SqlDbType.NVarChar, 50)
             .Value = connectedUser.getUserId();

        newCmd.Parameters.Add("@CreationDate", SqlDbType.DateTime)
             .Value = DateTime.Now;

        // To add a decimal value from TextBox
        newCmd.Parameters.Add("@SomeValue", SqlDbType.Decimal)
             .Value = System.Convert.ToDecimal(txtValueTextBox.Text);

        // complete the rest of the parameters
        // ........

        newCmd.ExecuteNonQuery();

        MessageBox.Show("Contract has been successfully created", "Completed", MessageBoxButtons.OK, MessageBoxIcon.Information);
    }
}
于 2012-12-05T21:34:28.313 回答
0

这不是您问题的直接答案,但请(!)用这个替换这个丑陋的方法:

为您的合同创建一个类。这将使处理合同变得更加容易。如果您有几种方法以某种方式处理合同,那么当向合同添加属性时,您不必更改所有这些方法的几乎无穷无尽的参数列表。

public class Contract
{
    public int EmployeeID { get; set; }
    public string Agency { get; set; }
    public string Role { get; set; }
    ... and so on
}

并将方法签名更改为

public void CreateNewContract(Contract contract)

从数据库加载合同的方法的标头看起来像这样

public List<Contract> LoadAllContracts()

// Assuming contractID is the primary key
public Contract LoadContractByID(int contractID)

比返回 1000 个变量要容易得多!

您可以创建一个新合同

var contract = new Contract {
    EmployeeID = 22,
    Agency = "unknown",
    Role = "important", 
    ...
};

另外(正如其他人已经指出的那样)使用命令参数。

newCmd.Parameters.AddWithValue("@EmployeeID", contract.EmployeeID);
newCmd.Parameters.AddWithValue("@Agency", contract.Agency);
newCmd.Parameters.AddWithValue("@Role", contract.Role);

(HaLaBi 的帖子展示了如何制定插入命令字符串。)

于 2012-12-05T21:59:54.783 回答