我正在使用此代码从Excel插入SQL。我希望我的查询中的每个插入都用逗号替换为逗号。
SqlCommand cmd2 = new SqlCommand("insert into Market (Barcode,Name,Code,TemporaryStock,VatcodeID,Unit,NetValue,DiscountValue,UnderlyingValue,VatValue,TotalValue)
select * from OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0;Database=" + textBox1.Text + "', 'SELECT * FROM [datasheet1$H:R]')", con);
cmd2.ExecuteNonQuery();
我应该使用全局System.Globalization.CultureInfo吗?
答案 0 :(得分:-1)
要替换另一个字符串中的字符/字符串,请使用class Program
{
static void Main()
{
IFactoryA factory = new FactoryA();
IClassA classA = factory.CreateClassA();
//I want to restrict being able to instantiate the class directly as below
IClassA newClassA = new ClassA();
}
}
方法。
string.Replace
您可以找到有关它的详细信息here。