[Firebird-net-provider] [FB-Tracker] Created: (DNET-121) When running FbValidation without database name, you get not so pretty exception

2007-09-24 Thread Jiri Cincura (JIRA)
When running FbValidation without database name, you get not so pretty exception Key: DNET-121 URL: http://tracker.firebirdsql.org/browse/DNET-121 Project: .NET Data

[Firebird-net-provider] IsolationLevel

2007-09-24 Thread Simona Moga
How make a setting IsolationLevel in a ConnectionstringBuilder for a connection in C# - Visual Studio 2005 ? Implicit connection for IsolationLevel is “ReadCommited”. Example code: FbConnectionStringBuilder cs = new FbConnectionStringBuilder(); cs.DataSource = ;

Re: [Firebird-net-provider] IsolationLevel

2007-09-24 Thread Jiri Cincura
It's not supported. Only valid values are: IsolationLevel.ReadCommitted; IsolationLevel.ReadUncommitted; IsolationLevel.RepeatableRead; IsolationLevel.Serializable; IsolationLevel.Chaos; IsolationLevel.Unspecified; -- Jiri {x2} Cincura (Microsoft Student Partner) http://blog.vyvojar.cz/jirka/ |

Re: [Firebird-net-provider] IsolationLevel

2007-09-24 Thread Carlos Guzmán Álvarez
Hello: It's not supported. Only valid values are: IsolationLevel.ReadCommitted; IsolationLevel.ReadUncommitted; IsolationLevel.RepeatableRead; IsolationLevel.Serializable; IsolationLevel.Chaos; IsolationLevel.Unspecified; I have committed a change to add the Snapshot il as well. --