Hi Every body!
I using codeigniter Framework with database Microsoft SQL SERVER 2016.
I have T-SQL
Insert into tbl_student('subject', 'name') output inserted.name values('laptrinhvb.net', 'Nguyễn Thảo')
I'm run T-sql in sqlserver management result => "Nguyễn Thảo".
I use T sql in php
$this->db->query("Insert into tbl_student('subject', 'name') output inserted.name values('laptrinhvb.net', 'Nguyễn Thảo')")->row()->name;
Result data empty!
Please help me!
I using codeigniter Framework with database Microsoft SQL SERVER 2016.
I have T-SQL
Insert into tbl_student('subject', 'name') output inserted.name values('laptrinhvb.net', 'Nguyễn Thảo')
I'm run T-sql in sqlserver management result => "Nguyễn Thảo".
I use T sql in php
$this->db->query("Insert into tbl_student('subject', 'name') output inserted.name values('laptrinhvb.net', 'Nguyễn Thảo')")->row()->name;
Result data empty!
Please help me!