Index: Tests/tkt-e235a52c82.eagle ================================================================== --- Tests/tkt-e235a52c82.eagle +++ Tests/tkt-e235a52c82.eagle @@ -56,11 +56,11 @@ { private IDbConnection connection; private IDbTransaction transaction; private bool opened; - /////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////// private void EnsureConnection() { if (connection == null) { @@ -76,11 +76,11 @@ if (transaction == null) transaction = connection.BeginTransaction(); } - /////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////// private void ReleaseConnection() { if (connection == null) throw new Exception("cannot release connection"); @@ -90,11 +90,11 @@ connection.Close(); opened = false; } } - /////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////// private IDbCommand CreateCommand( string commandText ) { @@ -105,11 +105,11 @@ command.CommandText = commandText; return command; } - /////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////// public object ExecuteReader( string commandText ) { @@ -125,11 +125,11 @@ { ReleaseConnection(); throw; } - ///////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////// try { result = reader.GetValue(0); } @@ -142,11 +142,11 @@ return result; } } - ///////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////// public static class Test${id} { public static string\[\] GetData() { @@ -154,11 +154,11 @@ new Query${id}().ExecuteReader("${sql}").ToString(), new Query${id}().ExecuteReader("${sql}").ToString() }; } - /////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////// public static void Main() { // do nothing. }