string sql = "SELECT id, model, comercial_model AS ComercialModel, type AS Unit FROM models WHERE model Like '@model*' ORDER BY model";
conn.Open();
Console.WriteLine(sql);
OleDbDataAdapter adapter = new OleDbDataAdapter(sql, conn);
DataTable dt = new DataTable();
adapter.Fill(dt);
dataGridView1.DataSource = dt;
dataGridView1.Columns[0].Visible = false;
dataGridView1.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCells);
conn.Close();
แต่พอเราลองลบ Where condition sql ออกไป มันแสดงข้อมูลทั้งหมดออกมาเฉยเลย งงมากค่ะ ไม่รู้ว่าโค้ดผิดตรงไหนหรือเปล่า รบกวนช่วยดูให้หน่อยค่ะ
$.fn.dataTable.render.wlsdate = function () { // เขียนเพิ่มโดย หน้าฮี
return function (data, type, row) {
if (type === 'display') {
let str = wls.Date.JsonDate2String(data); // cast jsondate to real string date
return str;
}
return data; // Search, order and type can use the original data
};
};
$.fn.dataTable.render.wlsNumber = function () { // เขียนเพิ่มโดย หน้าฮี
return function (data, type, row) {
if (type === 'display') {
let str = accounting.formatNumber(data, DECIMAL_PLACE_PRICE); //DECIMAL_PLACE_PRICE อ่านมาจากฐานข้อมูล ตาราง REP
return str;
}
return data; // Search, order and type can use the original data
};
};