Re: [Mono-aspnet-list] Send and recieve database info using stored procedures and MySQL.

2011-03-23 Thread ajwtech
Found the solution. I changed: "AddParamToSQLCmd(sqlCmd, "@ReturnValue", MySqlDbType.Int32, 0, ParameterDirection.ReturnValue, null);" to: "AddParamToSQLCmd(sqlCmd, "@ReturnValue", MySqlDbType.Int32, 0, ParameterDirection.INOUT, null);" -- View this message in context: http://mono.1490590.n4.n

[Mono-aspnet-list] Send and recieve database info using stored procedures and MySQL.

2011-03-23 Thread ajwtech
Ok, So I have some C# in an ASP.net page that sends parameters to a MySQL Stored Procedure. I get the error that you see below. I have included the Error, the C# and the stored procedure. I think the problem has something to do with this line: "AddParamToSQLCmd(sqlCmd, "@ReturnValue", MySqlDbType.I

Re: [Mono-aspnet-list] System.Web.HttpException: Unable to validate data

2011-03-23 Thread ajwtech
I never found a resolution however It is no longer happening. -- View this message in context: http://mono.1490590.n4.nabble.com/System-Web-HttpException-Unable-to-validate-data-tp3383560p3401432.html Sent from the Mono - ASP.NET mailing list archive at Nabble.com. ___

Re: [Mono-aspnet-list] Distributed Cache solution?

2011-03-23 Thread cfi
Hi, I'm using BeIT (http://code.google.com/p/beitmemcached/) and its running fine under mono. regards cfi -- View this message in context: http://mono.1490590.n4.nabble.com/Distributed-Cache-solution-tp3399623p3399644.html Sent from the Mono - ASP.NET mailing list archive at Nabble.com. ___

[Mono-aspnet-list] Distributed Cache solution?

2011-03-23 Thread Tim Nelson
I had Membase/Memcached running perfectly under Windows. I ported my application to Mono and even though Membase server is working fine I am struggling to get the C# Client working with Mono. Does anyone have this mix running? Are there other distributed cache solutions for Asp.Net/C#/Mono/*nix