前几天在上C#时,学到了使用Connection连接数据库这一功能。

当时我写的连接字符串语句:

1
    String s = "Server=" + textBox1.Text + ";Database=" + textBox2.Text + ";User Id=" + textBox3.Text + ";Password=" + textBox4.Text + "";

这种写起来出错率高,可读性弱,不易修改。

后来发现有一种更简单的写法,用字符串格式化:

1
    String s = string.Fromat("Server={0};Database={1};User Id={2};Password={3}",textBox1.Text,textBox2.Text,textBox3.Text);

这样写起来就好多了,简单又直观。