vote up 0 vote down star

I wrote the following sample code that compiles and runs fine on VS.NET 3.5 SP 1:

/// <summary>
/// Executes the command.
/// </summary>
public Result Execute()
{
    var builder = new StringBuilder();
    builder.AppendLine("delete from defaultvolume where departmentid not in (1, 15)").
        AppendLine("delete from secuserprofile where departmentid not in (1, 15)").
        AppendLine("delete from documentdeptfolder where departmentid not in (1, 15)").
        AppendLine(
        "delete from folderorganization where folderid in (select folderid from folder where departmentid not in (1, 15))").
        AppendLine("delete from folderorganization where departmentid not in (1, 15)").
        AppendLine(
        "delete from folderattribute where folderid not in (select folderid from folder where departmentid in (1, 15))").
        AppendLine("delete from folder where departmentid not in (1, 15)").
        AppendLine(
        "delete from documentattribute where documentid not in (select documentid from [document] where departmentid in (1, 15))").
        AppendLine("delete from [document] where departmentid not in (1, 15)").
        AppendLine("delete from attributeorganization where departmentid not in (1, 15)").
        AppendLine("delete from orgdepartment where departmentid not in (1, 15)");

    var factory = new DbConnectionFactory(DbConnectionType.SqlConnection, _ConnectionString);
    using(var proc = new CeoQuery(factory, builder.ToString(), CommandType.Text, 130))
    {
        proc.ExecuteVoid();
    }


    return new Result(null);
}

When I copy the binaries over to OS X and run it on Mono (--version says "Mono JIT compiler version 2.4 (tarball Fri Mar 13 09:25:35 MDT 2009)"), I get the following error running the code:

System.Data.SqlClient.SqlException: Incorrect syntax near the keyword 'select'.
  at System.Data.SqlClient.SqlConnection.ErrorHandler (System.Object sender, Mono.Data.Tds.Protocol.TdsInternalErrorMessageEventArgs e) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.OnTdsErrorMessage (Mono.Data.Tds.Protocol.TdsInternalErrorMessageEventArgs e) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.ProcessMessage (TdsPacketSubType subType) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.ProcessSubPacket () [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.NextResult () [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.SkipToEnd () [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.ExecuteQuery (System.String sql, Int32 timeout, Boolean wantResults) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds70.Execute (System.String commandText, Mono.Data.Tds.TdsMetaParameterCollection parameters, Int32 timeout, Boolean wantResults) [0x00000] 
  at System.Data.SqlClient.SqlCommand.Execute (Boolean wantResults) [0x00000] 
  at System.Data.SqlClient.SqlCommand.ExecuteNonQuery () [0x00000] 
  at Ceoimage.Data.CeoQuery._Execute (IDbConnectionFactory factory, IDbCommand command, IDbDataParameter returnValue, ResultType resultType) [0x00000] 
  at Ceoimage.Data.CeoQuery.ExecuteVoid () [0x00000] 
  at SmoTest.DeleteDepartmentsDataPrep.Execute () [0x00000] 
  at Ceoimage.Basecamp.SmoBackup.Backup.Execute () [0x00000] 
System.Data.SqlClient.SqlException: Incorrect syntax near the keyword 'select'.
  at System.Data.SqlClient.SqlConnection.ErrorHandler (System.Object sender, Mono.Data.Tds.Protocol.TdsInternalErrorMessageEventArgs e) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.OnTdsErrorMessage (Mono.Data.Tds.Protocol.TdsInternalErrorMessageEventArgs e) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.ProcessMessage (TdsPacketSubType subType) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.ProcessSubPacket () [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.NextResult () [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.SkipToEnd () [0x00000] 
  at Mono.Data.Tds.Protocol.Tds.ExecuteQuery (System.String sql, Int32 timeout, Boolean wantResults) [0x00000] 
  at Mono.Data.Tds.Protocol.Tds70.Execute (System.String commandText, Mono.Data.Tds.TdsMetaParameterCollection parameters, Int32 timeout, Boolean wantResults) [0x00000] 
  at System.Data.SqlClient.SqlCommand.Execute (Boolean wantResults) [0x00000] 
  at System.Data.SqlClient.SqlCommand.ExecuteNonQuery () [0x00000] 
  at Ceoimage.Data.CeoQuery._Execute (IDbConnectionFactory factory, IDbCommand command, IDbDataParameter returnValue, ResultType resultType) [0x00000] 
  at Ceoimage.Data.CeoQuery.ExecuteVoid () [0x00000] 
  at Test.DeleteDepartmentsDataPrep.Execute () [0x00000]

It seems Mono chokes while running the embedded SQL, but I'm not sure why if it is the same binaries sending the same SQL to the same database on the same server as the one that succeeds on Windows. All the SELECT statements are in subqueries, so I am not sure why the Mono runtime even cares.

Any ideas?

UPDATE: I refactored so the query is now read out of a config file and added semi-colons to each line of SQL, but the result is the same as the query runs fine in MS .NET but not on Mono. I even commented out the lines containing sub-queries and selects, only to get the same result complaining about "incorrect syntax near the keyword 'select'. I also tried putting "GO;" between each delete and got the same result.

Is it significant that the stack trace uses SqlCommand.ExecuteNonQuery() which eventually translates to Mono.Data.Tds.ExecuteQuery(...) which then calls .NextResult() when there is no result?

flag

I'd add a a semicolon at the end of each SQL query. – nos Jul 24 at 22:01
No Mono experts want to take a go at this one? – flipdoubt Aug 12 at 20:29

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.