More work on new authentication service

This commit is contained in:
Melanie
2009-09-04 03:13:32 +01:00
parent e39d0ef627
commit c9a24ece54
5 changed files with 43 additions and 18 deletions

View File

@@ -70,6 +70,7 @@ namespace OpenSim.Data.MySQL
}
catch (MySqlException e)
{
Console.WriteLine(e.ToString());
if (errorSeen)
throw;
@@ -88,6 +89,13 @@ namespace OpenSim.Data.MySQL
cmd.Connection = m_Connection;
}
else
throw;
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
return 0;
}
}
}