New test.
[mono.git] / mcs / class / Mono.Data.SybaseClient / Mono.Data.SybaseClient / SybaseCommand.cs
index 66cc5c14f17928c59af182b78106fe0743bcb2ef..ad31b479b1541418a74818d1e20f21ac6f469ded 100644 (file)
 // Copyright (C) Tim Coleman, 2002
 //
 
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using Mono.Data.Tds;
 using Mono.Data.Tds.Protocol;
 using System;
@@ -214,6 +235,7 @@ namespace Mono.Data.SybaseClient {
 
                private void Execute (CommandBehavior behavior, bool wantResults)
                {
+                       Tds.RecordsAffected = -1; 
                        TdsMetaParameterCollection parms = Parameters.MetaParameters;
                        if (preparedStatement == null) {
                                bool schemaOnly = ((CommandBehavior & CommandBehavior.SchemaOnly) > 0);
@@ -258,6 +280,7 @@ namespace Mono.Data.SybaseClient {
 
                        try {
                                Execute (CommandBehavior.Default, false);
+                               result = Tds.RecordsAffected;
                        }
                        catch (TdsTimeoutException e) {
                                throw SybaseException.FromTdsInternalException ((TdsInternalException) e);