恢复更改布尔值true为false

时间:2015-01-06 15:02:23

标签: c# mysql

在我的程序中,有一个方法可以进行备份:

INSERT INTO `vente` VALUES('1','101','Mehdi','Ismail','3','107','Serpina'
,'1','Ephese','3','1','0','0','2014-05-20','0615','Pacha','9','0','60','0','0',
'False','True','1','5','1',
'2014-07-02 05:14:45','1','2015-01-05 03:17:47')

当我恢复时,真实字段存储为ZERO

我使用StreamReader读取CSV文件并使用命令ExecutNonQuery()

该列在mysql 5.5中被设计为bool。

在恢复期间,此字段是否已转换为字符串?

如果我使用LOAD DATA INFILE而不是我的方法,这可以解决这个问题吗?

这是我恢复数据的方法(它有点长但是有些人要求看看我为此做了什么)

    private void RestoreData()
    {
       // some declaration for labels and textboxes
        DirectoryInfo d = new DirectoryInfo(pathname);
        FileInfo[] Files = d.GetFiles("*.sql");
        if (Files.Length == 0)
        {
            MessageBox.Show("There is no sql files in this folder.");
            return;
        }

        for (int i = 0; i < Files.Length; ++i)
        {
            string filename = System.IO.Path.Combine(pathname, Files[i].ToString());
            TotalRows = TotalRows + File.ReadAllLines(filename).Length;
            MyArray[i] = File.ReadAllLines(filename).Length.ToString();
        }
        using (MySqlConnection conn = new MySqlConnection(PublicVariables.cs))
        {
            conn.Open();
            for (int i = 0; i < Files.Length; ++i)
            {
                string filename = System.IO.Path.Combine(pathname, Files[i].ToString());
                string tblname = Files[i].ToString();
                tblname = tblname.Substring(0, tblname.Length - 4);
                DialogResult result = MessageBox.Show("Would you restore the table " + tblname + " ?", "", MessageBoxButtons.YesNo);
                MySqlCommand cmd;
                if (result == DialogResult.Yes)
                {
                    cmd = new MySqlCommand("TRUNCATE TABLE " + tblname, conn);
                    try
                    {
                        cmd.ExecuteNonQuery();
                    }
                    catch (MySqlException e)
                    {
                        MessageBox.Show(e.Number.ToString() + " -> " + e.Message.ToString());
                        conn.Close();
                        button5.Visible = true;
                        return;
                    }
                    int RowsNbr = Convert.ToInt32(MyArray[i]);
                    System.IO.StreamReader file = new System.IO.StreamReader(filename, Encoding.UTF8, true);
                    for (int a = 0; a < RowsNbr; ++a)
                    {
                        string cmdstr = file.ReadLine();
                        cmdstr = cmdstr.Replace("\n\r", string.Empty);
                        cmd = new MySqlCommand(cmdstr, conn);
                        try
                        {
                            cmd.ExecuteNonQuery();
                        }
                        catch (MySqlException e)
                        {
                            MessageBox.Show(e.Number.ToString() + " -> " + e.Message.ToString());
                            button5.Visible = true;
                            file.Close();
                            return;
                        }
                        cmd.Dispose();
                        ++counter;
                        int barvalue = (counter * 100 / TotalRows);
                        progressBar1.Value = barvalue;
                        barproceed = true;
                    }
                }
                if (!barproceed)
                {
                    counter = counter + Convert.ToInt32(MyArray[i]);
                    int bar1value = (counter * 100) / TotalRows;
                    progressBar1.Value = bar1value;
                }
                barproceed = false;
            }
        }

1 个答案:

答案 0 :(得分:1)

这看起来像是在数字上下文中解释字符串值的问题。

对于INSERT语句,有一个字符串文字 'True' ,它被转换为整数。当字符串是非数字时,MySQL不会抛出异常或错误,MySQL可以获得任何前导数值,并丢弃其余的数值。如果MySQL找不到任何数字,它的计算结果为0.因此,很多字符串最终被评估为0的整数值。

在数字上下文中计算字符串文字的简单演示是向它们添加0:

SELECT d.d
     , d.d + 0
  FROM ( SELECT 'foo' AS d
          UNION ALL SELECT 'True'
          UNION ALL SELECT 'False' AS d
          UNION ALL SELECT 'a1'
          UNION ALL SELECT '123def'
          UNION ALL SELECT ' -12-345-67'
          UNION ALL SELECT '+42'
       ) d

d            d + 0  
-----------  ------
foo               0
True              0
False             0
a1                0
123def          123
 -12-345-67     -12
+42              42

我们发现字符串文字值'True''False'在数值上下文中都评估为 0

OP声明:

该列在mysql 5.5中被设计为bool。

目前尚不清楚这意味着什么,因为MySQL 5.5中没有“BOOLEAN”列数据类型。

MySQL确实识别布尔文字 TRUE FALSE ,但这些只是评估为整数值的关键字 { {1}} 1

布尔文字不包含在单引号中。用单引号括起来的值,例如 0 'True' string 文字。


从“boolean”到MySQL数据类型有几种可能的映射。

我们总是为布尔保留的dataype是'False'

我们指定文字值1或0,但也可以使用布尔关键字TINYINT(1) UNSIGNED COMMENT 'boolean'TRUE。如果我们分配了FALSE的字符串文字值(如MySQL所允许的话),那么它将转换为'True',就像0转换为'False'一样。