Bu sorgu php_mssql sürücüsünü kullanarak çalışıyor:
INSERT INTO Table(columnName) VALUES ('text');
SELECT SCOPE_IDENTITY() AS id;
Table does have an id column, which is an identity. I would execute that query, and get the last id in the table.
Sorgu Microsoft'un php_sqlsrv sürücüsü kullanılarak idam ise aynı kod çalışmaz.
I don´t get any error when executing the query (sqlsrv_query function) , but i get the following error when calling sqlsrv_fetch_array: "The active result for the query contains no fields"
Ben çok google'dan, ve hiçbir cevap bulamadık, hiç kimse daha önce bu sorunla karşı karşıya bu benim için büyük bir sürpriz oldu, o kimse gibi görünüyor PHP 5.3 beri "resmi" biri olsa, bu sürücüyü kullanıyor bırakma ...
Teşekkürler.