I connect to sql server database by codeigniter and I can make sql queries normally.
when I want to use grocerycrud
function test_gro(){
$crud = new grocery_CRUD();
$crud->set_theme('datatables');
$crud->set_table('Employee');
$crud->set_subject('موظÙ');
$crud->unset_export();
$crud->unset_print();
$output = $crud->render();
$this->_example_output($output);
}
I have this error
[quote]
[b] A Database Error Occurred[/b]
[color=#4F5155][font='normal Helvetica', Arial, sans-serif][size=3]
Error Number: 42000[/size][/font][/color][color=#4F5155][font='normal Helvetica', Arial, sans-serif][size=3]
[Microsoft][SQL Server Native Client 11.0][SQL Server]Incorrect syntax near the keyword 'FROM'.[/size][/font][/color][color=#4F5155][font='normal Helvetica', Arial, sans-serif][size=3]
SHOW COLUMNS FROM `Employee`[/size][/font][/color][color=#4F5155][font='normal Helvetica', Arial, sans-serif][size=3]
Filename: D:\xampp\htdocs\test\system\database\DB_driver.php[/size][/font][/color]
[color=#4F5155][font='normal Helvetica', Arial, sans-serif][size=3]Line Number: 330[/size][/font][/color][/quote]