I want to change the transaction isolation level of a connection to SQL Server CE (3.5) according to the documentation : http://msdn.microsoft.com/en-us/library/ms171885(v=SQL.105).aspx
So I send the following statement:
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
And I get this error:
There was an error parsing the query. [ Token line number = 1,Token line offset = 5,Token in error = TRANSACTION ]
What is wrong with my statement ?