Home
last modified time | relevance | path

Searched refs:IsolationLevel (Results 1 – 25 of 1086) sorted by relevance

12345678910>>...44

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Transactions.Local/tests/
H A DCloneTxTests.cs21 …[InlineData(CloneType.Normal, IsolationLevel.Serializable, false, false, TransactionStatus.Committ…
22 …[InlineData(CloneType.Normal, IsolationLevel.RepeatableRead, false, false, TransactionStatus.Commi…
23 …[InlineData(CloneType.Normal, IsolationLevel.ReadCommitted, false, false, TransactionStatus.Commit…
24 …[InlineData(CloneType.Normal, IsolationLevel.ReadUncommitted, false, false, TransactionStatus.Comm…
25 … [InlineData(CloneType.Normal, IsolationLevel.Snapshot, false, false, TransactionStatus.Committed)]
26 … [InlineData(CloneType.Normal, IsolationLevel.Chaos, false, false, TransactionStatus.Committed)]
27 …[InlineData(CloneType.Normal, IsolationLevel.Unspecified, false, false, TransactionStatus.Committe…
33 …[InlineData(CloneType.BlockingDependent, IsolationLevel.Chaos, false, false, TransactionStatus.Abo…
40 …[InlineData(CloneType.RollbackDependent, IsolationLevel.Chaos, false, false, TransactionStatus.Abo…
71 IsolationLevel = isoLevel, in Run()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.OracleClient/Test/System.Data.OracleClient.jvm/OracleTransaction/
H A DOracleTransaction_IsolationLevel.cs69 txn=con.BeginTransaction(IsolationLevel.Chaos); in IsolationLevelChaos()
70 Compare(txn.IsolationLevel,IsolationLevel.Chaos); in IsolationLevelChaos()
93 Compare(txn.IsolationLevel,IsolationLevel.ReadCommitted); in run()
105 txn=con.BeginTransaction(IsolationLevel.ReadUncommitted ); in run()
106 Compare(txn.IsolationLevel,IsolationLevel.ReadUncommitted); in run()
119 txn=con.BeginTransaction(IsolationLevel.RepeatableRead); in run()
120 Compare(txn.IsolationLevel,IsolationLevel.RepeatableRead); in run()
130 txn=con.BeginTransaction(IsolationLevel.Serializable); in run()
131 Compare(txn.IsolationLevel,IsolationLevel.Serializable); in run()
150 txn=con.BeginTransaction(IsolationLevel.Unspecified ); in run()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Odbc/
H A DOdbcTransaction.cs18 private IsolationLevel _isolevel = IsolationLevel.Unspecified;
21 …internal OdbcTransaction(OdbcConnection connection, IsolationLevel isolevel, OdbcConnectionHandle … in OdbcTransaction()
41 override public IsolationLevel IsolationLevel { property in System.Data.Odbc.OdbcTransaction
51 if(IsolationLevel.Unspecified == _isolevel) {
56 _isolevel = IsolationLevel.ReadUncommitted;
59 _isolevel = IsolationLevel.ReadCommitted;
62 _isolevel = IsolationLevel.RepeatableRead;
65 _isolevel = IsolationLevel.Serializable;
68 _isolevel = IsolationLevel.Snapshot;
136 _isolevel = IsolationLevel.Unspecified; in Dispose()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Odbc/src/System/Data/Odbc/
H A DOdbcTransaction.cs12 private IsolationLevel _isolevel = IsolationLevel.Unspecified;
15 …internal OdbcTransaction(OdbcConnection connection, IsolationLevel isolevel, OdbcConnectionHandle … in OdbcTransaction()
38 public override IsolationLevel IsolationLevel property in System.Data.Odbc.OdbcTransaction
51 if (IsolationLevel.Unspecified == _isolevel)
58 _isolevel = IsolationLevel.ReadUncommitted;
61 _isolevel = IsolationLevel.ReadCommitted;
64 _isolevel = IsolationLevel.RepeatableRead;
67 _isolevel = IsolationLevel.Serializable;
70 _isolevel = IsolationLevel.Snapshot;
149 _isolevel = IsolationLevel.Unspecified; in Dispose()
H A DOdbcConnectionHandle.cs80 internal ODBC32.RetCode BeginTransaction(ref IsolationLevel isolevel) in BeginTransaction()
84 if (IsolationLevel.Unspecified != isolevel) in BeginTransaction()
89 case IsolationLevel.ReadUncommitted: in BeginTransaction()
93 case IsolationLevel.ReadCommitted: in BeginTransaction()
97 case IsolationLevel.RepeatableRead: in BeginTransaction()
101 case IsolationLevel.Serializable: in BeginTransaction()
105 case IsolationLevel.Snapshot: in BeginTransaction()
110 case IsolationLevel.Chaos: in BeginTransaction()
126 isolevel = IsolationLevel.Unspecified; in BeginTransaction()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/src/System/Data/SqlClient/
H A DSqlDelegatedTransaction.cs49 … Transactions.IsolationLevel systxIsolationLevel = (Transactions.IsolationLevel)tx.IsolationLevel; in SqlDelegatedTransaction()
60 case Transactions.IsolationLevel.ReadCommitted: in SqlDelegatedTransaction()
61 _isolationLevel = IsolationLevel.ReadCommitted; in SqlDelegatedTransaction()
63 case Transactions.IsolationLevel.ReadUncommitted: in SqlDelegatedTransaction()
64 _isolationLevel = IsolationLevel.ReadUncommitted; in SqlDelegatedTransaction()
66 case Transactions.IsolationLevel.RepeatableRead: in SqlDelegatedTransaction()
67 _isolationLevel = IsolationLevel.RepeatableRead; in SqlDelegatedTransaction()
69 case Transactions.IsolationLevel.Serializable: in SqlDelegatedTransaction()
70 _isolationLevel = IsolationLevel.Serializable; in SqlDelegatedTransaction()
72 case Transactions.IsolationLevel.Snapshot: in SqlDelegatedTransaction()
[all …]
H A DSqlClientDiagnosticListenerExtensions.cs217 …tic Guid WriteTransactionCommitBefore(this DiagnosticListener @this, IsolationLevel isolationLevel… in WriteTransactionCommitBefore()
229 IsolationLevel = isolationLevel, in WriteTransactionCommitBefore()
240 …nsactionCommitAfter(this DiagnosticListener @this, Guid operationId, IsolationLevel isolationLevel… in WriteTransactionCommitAfter()
250 IsolationLevel = isolationLevel, in WriteTransactionCommitAfter()
257 …nsactionCommitError(this DiagnosticListener @this, Guid operationId, IsolationLevel isolationLevel… in WriteTransactionCommitError()
267 IsolationLevel = isolationLevel, in WriteTransactionCommitError()
275 …c Guid WriteTransactionRollbackBefore(this DiagnosticListener @this, IsolationLevel isolationLevel… in WriteTransactionRollbackBefore()
287 IsolationLevel = isolationLevel, in WriteTransactionRollbackBefore()
299 …actionRollbackAfter(this DiagnosticListener @this, Guid operationId, IsolationLevel isolationLevel… in WriteTransactionRollbackAfter()
309 IsolationLevel = isolationLevel, in WriteTransactionRollbackAfter()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DCallbackBehaviorAttribute.cs30 internal static IsolationLevel DefaultIsolationLevel = IsolationLevel.Unspecified;
31 IsolationLevel transactionIsolationLevel = DefaultIsolationLevel;
43 public IsolationLevel TransactionIsolationLevel
50 case IsolationLevel.Serializable:
51 case IsolationLevel.RepeatableRead:
52 case IsolationLevel.ReadCommitted:
53 case IsolationLevel.ReadUncommitted:
54 case IsolationLevel.Unspecified:
55 case IsolationLevel.Chaos:
56 case IsolationLevel.Snapshot:
H A DServiceBehaviorAttribute.cs24 internal static IsolationLevel DefaultIsolationLevel = IsolationLevel.Unspecified;
39 IsolationLevel transactionIsolationLevel = DefaultIsolationLevel;
111 public IsolationLevel TransactionIsolationLevel
118 case IsolationLevel.Serializable:
119 case IsolationLevel.RepeatableRead:
120 case IsolationLevel.ReadCommitted:
121 case IsolationLevel.ReadUncommitted:
122 case IsolationLevel.Unspecified:
123 case IsolationLevel.Chaos:
124 case IsolationLevel.Snapshot:
/dports/lang/mono/mono-5.10.1.57/mcs/class/IBM.Data.DB2/IBM.Data.DB2/
H A DDB2Transaction.cs36 IsolationLevel isolationLevel;
42 internal DB2Transaction(DB2Connection con, IsolationLevel isoL) in DB2Transaction()
53 case System.Data.IsolationLevel.Chaos: //No DB2equivalent, default to SQL_TXN_READ_COMMITTED in DB2Transaction()
54 case System.Data.IsolationLevel.ReadCommitted: //SQL_TXN_READ_COMMITTED in DB2Transaction()
57 case System.Data.IsolationLevel.ReadUncommitted: //SQL_TXN_READ_UNCOMMITTED in DB2Transaction()
60 case System.Data.IsolationLevel.RepeatableRead: //SQL_TXN_REPEATABLE_READ in DB2Transaction()
63 case System.Data.IsolationLevel.Serializable: //SQL_TXN_SERIALIZABLE_READ in DB2Transaction()
94 public IsolationLevel IsolationLevel property in IBM.Data.DB2.DB2Transaction
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/OleDb/
H A DOleDbTransaction.cs23 private readonly System.Data.IsolationLevel _isolationLevel;
123 isolevel = IsolationLevel.ReadCommitted; in OleDbTransaction()
125 case IsolationLevel.Chaos: in OleDbTransaction()
126 case IsolationLevel.ReadUncommitted: in OleDbTransaction()
127 case IsolationLevel.ReadCommitted: in OleDbTransaction()
128 case IsolationLevel.RepeatableRead: in OleDbTransaction()
129 case IsolationLevel.Serializable: in OleDbTransaction()
130 case IsolationLevel.Snapshot: in OleDbTransaction()
150 override public IsolationLevel IsolationLevel { property in System.Data.OleDb.OleDbTransaction
171 public OleDbTransaction Begin(IsolationLevel isolevel) { in Begin()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-client/src/main/java/org/apache/hadoop/hbase/client/
H A DIsolationLevel.java37 public enum IsolationLevel { enum
42 IsolationLevel(int value) {} in IsolationLevel() method in IsolationLevel
52 public static IsolationLevel fromBytes(byte [] bytes) { in fromBytes()
53 return IsolationLevel.fromByte(bytes[0]); in fromBytes()
56 public static IsolationLevel fromByte(byte vbyte) { in fromByte()
57 return IsolationLevel.values()[vbyte]; in fromByte()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/SqlClient/
H A DSqlDelegatedTransaction.cs37 …private IsolationLevel _isolationLevel; // the IsolationLevel of the transaction w…
49 SysTx.IsolationLevel systxIsolationLevel = tx.IsolationLevel; in SqlDelegatedTransaction()
59 …case SysTx.IsolationLevel.ReadCommitted: _isolationLevel = IsolationLevel.ReadCommitted; br… in SqlDelegatedTransaction()
60 …case SysTx.IsolationLevel.ReadUncommitted: _isolationLevel = IsolationLevel.ReadUncommitted; br… in SqlDelegatedTransaction()
61 …case SysTx.IsolationLevel.RepeatableRead: _isolationLevel = IsolationLevel.RepeatableRead; br… in SqlDelegatedTransaction()
62 …case SysTx.IsolationLevel.Serializable: _isolationLevel = IsolationLevel.Serializable; br… in SqlDelegatedTransaction()
63 …case SysTx.IsolationLevel.Snapshot: _isolationLevel = IsolationLevel.Snapshot; br… in SqlDelegatedTransaction()
166 …eTransaction(SqlInternalConnection.TransactionRequest.Promote, null, IsolationLevel.Unspecified, _…
257 …Transaction(SqlInternalConnection.TransactionRequest.Rollback, null, IsolationLevel.Unspecified, _…
352 …teTransaction(SqlInternalConnection.TransactionRequest.Commit, null, IsolationLevel.Unspecified, _…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/Statements/
H A DTransactionScope.cs21 const IsolationLevel defaultIsolationLevel = default(IsolationLevel);
72 public IsolationLevel IsolationLevel property in System.Activities.Statements.TransactionScope
119 return this.IsolationLevel != defaultIsolationLevel; in ShouldSerializeIsolationLevel()
335 if (transaction.IsolationLevel != this.IsolationLevel) in Execute()
362 IsolationLevel = this.IsolationLevel, in OnContextAcquired()
457 class IsolationLevelValue : CodeActivity<IsolationLevel>
477 this.Result = new OutArgument<IsolationLevel>(); in CacheMetadata()
489 protected override IsolationLevel Execute(CodeActivityContext context) in Execute()
491 return this.Scope.Get(context).IsolationLevel; in Execute()
503 public InArgument<IsolationLevel> CurrentIsolationLevel
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/diesel-1.4.8/src/pg/
H A Dtransaction.rs23 isolation_level: Option<IsolationLevel>,
212 self.isolation_level = Some(IsolationLevel::ReadCommitted); in read_committed()
237 self.isolation_level = Some(IsolationLevel::RepeatableRead); in repeatable_read()
262 self.isolation_level = Some(IsolationLevel::Serializable); in serializable()
317 enum IsolationLevel { enum
323 impl QueryFragment<Pg> for IsolationLevel { implementation
327 IsolationLevel::ReadCommitted => out.push_sql("READ COMMITTED"), in walk_ast()
328 IsolationLevel::RepeatableRead => out.push_sql("REPEATABLE READ"), in walk_ast()
329 IsolationLevel::Serializable => out.push_sql("SERIALIZABLE"), in walk_ast()
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/diesel-1.4.8/src/pg/
H A Dtransaction.rs23 isolation_level: Option<IsolationLevel>,
212 self.isolation_level = Some(IsolationLevel::ReadCommitted); in read_committed()
237 self.isolation_level = Some(IsolationLevel::RepeatableRead); in repeatable_read()
262 self.isolation_level = Some(IsolationLevel::Serializable); in serializable()
317 enum IsolationLevel { enum
323 impl QueryFragment<Pg> for IsolationLevel { implementation
327 IsolationLevel::ReadCommitted => out.push_sql("READ COMMITTED"), in walk_ast()
328 IsolationLevel::RepeatableRead => out.push_sql("REPEATABLE READ"), in walk_ast()
329 IsolationLevel::Serializable => out.push_sql("SERIALIZABLE"), in walk_ast()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data/System.Data.SqlClient/
H A DSqlTransaction.platformnotsupported.cs14 internal readonly IsolationLevel _isolationLevel = IsolationLevel.ReadCommitted;
17 IsolationLevel iso, SqlInternalTransaction internalTransaction) in SqlTransaction()
29 override public IsolationLevel IsolationLevel field in System.Data.SqlClient.SqlTransaction
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/
H A DSQLiteTransaction.cs24 private IsolationLevel _level;
36 _level = (deferredLock == true) ? IsolationLevel.ReadCommitted : IsolationLevel.Serializable; in SqliteTransaction()
117 public override IsolationLevel IsolationLevel property in Mono.Data.Sqlite.SqliteTransaction
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Transactions/System.Transactions/
H A DTransactionOptions.cs16 IsolationLevel level;
19 internal TransactionOptions (IsolationLevel level, TimeSpan timeout) in TransactionOptions()
25 public IsolationLevel IsolationLevel { property
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/Common/
H A DDbConnection.cs50 protected abstract DbTransaction BeginDbTransaction(IsolationLevel isolationLevel); in BeginDbTransaction()
53 BeginDbTransaction(IsolationLevel.Unspecified); in BeginTransaction()
55 public DbTransaction BeginTransaction(IsolationLevel isolationLevel) in BeginTransaction()
61 BeginDbTransaction(IsolationLevel.Unspecified); in IDbConnection.BeginTransaction()
63 IDbTransaction IDbConnection.BeginTransaction(IsolationLevel isolationLevel) =>
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Transactions/
H A DWsatProxy.cs113 localContext.IsolationLevel, in UnmarshalTransaction()
403 IsolationLevel isoLevel, in MarshalPropagationToken()
454 static ProxyIsolationLevel ConvertIsolationLevel(IsolationLevel IsolationLevel) in ConvertIsolationLevel() argument
457 switch (IsolationLevel) in ConvertIsolationLevel()
459 case IsolationLevel.Serializable: in ConvertIsolationLevel()
462 case IsolationLevel.RepeatableRead: in ConvertIsolationLevel()
465 case IsolationLevel.ReadCommitted: in ConvertIsolationLevel()
468 case IsolationLevel.ReadUncommitted: in ConvertIsolationLevel()
471 case IsolationLevel.Unspecified: in ConvertIsolationLevel()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.OracleClient/System.Data.OracleClient/
H A DOracleTransaction.cs30 IsolationLevel isolationLevel;
39 …internal OracleTransaction (OracleConnection connection, IsolationLevel isolevel, OciTransactionHa… in OracleTransaction()
68 IsolationLevel IsolationLevel { property in System.Data.OracleClient.OracleTransaction
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Common/
H A DDBConnection.cs108 abstract protected DbTransaction BeginDbTransaction(IsolationLevel isolationLevel); in BeginDbTransaction()
111 return BeginDbTransaction(IsolationLevel.Unspecified); in BeginTransaction()
114 public DbTransaction BeginTransaction(IsolationLevel isolationLevel) { in BeginTransaction()
119 return BeginDbTransaction(IsolationLevel.Unspecified); in IDbConnection.BeginTransaction()
122 IDbTransaction IDbConnection.BeginTransaction(IsolationLevel isolationLevel) { in IDbConnection.BeginTransaction()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Transactions.Local/src/System/Transactions/
H A DTransactionManager.cs272 internal static IsolationLevel DefaultIsolationLevel
283 return IsolationLevel.Serializable;
453 internal static void ValidateIsolationLevel(IsolationLevel transactionIsolationLevel) in ValidateIsolationLevel()
457 case IsolationLevel.Serializable: in ValidateIsolationLevel()
458 case IsolationLevel.RepeatableRead: in ValidateIsolationLevel()
459 case IsolationLevel.ReadCommitted: in ValidateIsolationLevel()
460 case IsolationLevel.ReadUncommitted: in ValidateIsolationLevel()
461 case IsolationLevel.Unspecified: in ValidateIsolationLevel()
462 case IsolationLevel.Chaos: in ValidateIsolationLevel()
463 case IsolationLevel.Snapshot: in ValidateIsolationLevel()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Behaviors/
H A DWorkflowTransactionOptions.cs26 …gister("IsolationLevel", typeof(IsolationLevel), typeof(WorkflowTransactionOptions), new PropertyM…
48 public IsolationLevel IsolationLevel property in System.Workflow.ComponentModel.WorkflowTransactionOptions
52 return (IsolationLevel)base.GetValue(IsolationLevelProperty);

12345678910>>...44