您好我想知道防止SQL injection
in的最佳方法SqlDataAdapter
是什么(因为无法使用参数化查询)?
例如,让我们使用这部分代码:
da_services = new SqlDataAdapter("SELECT * from table WHERE column='" + textBox1.Text + "' AND column2='" + somestring + "'", conn);
scd_services = new SqlCommandBuilder(da_services);
dt_services = new DataTable();
da_services.Fill(dt_services);
dtg_services.DataSource = dt_services;
conn.Close();
感谢您的时间。