Dashing.Engine.Dialects.SqliteDialect.AppendForUpdateUsingTableHint C# (CSharp) 메소드

AppendForUpdateUsingTableHint() 공개 메소드

public AppendForUpdateUsingTableHint ( StringBuilder tableSql ) : void
tableSql StringBuilder
리턴 void
        public override void AppendForUpdateUsingTableHint(StringBuilder tableSql) {
            // sqlite doesn't support FOR UPDATE type locks
            throw new NotSupportedException();
        }