apparently I missed one of the old version routines that could be

removed.  Removing that now.
0.6.0-stable
Sean Dague 2008-09-02 20:17:57 +00:00
parent a721f2cfe4
commit abb0ad36bd
1 changed files with 0 additions and 39 deletions

View File

@ -253,45 +253,6 @@ namespace OpenSim.Data.MySQL
m_lastConnectionUse = timeNow;
}
/// <summary>
/// Given a list of tables, return the version of the tables, as seen in the database
/// </summary>
/// <param name="tableList">The list of table</param>
/// <param name="dbcon">The database connection handler</param>
public void GetTableVersion(Dictionary<string, string> tableList, MySqlConnection dbcon)
{
lock (dbcon)
{
MySqlCommand tablesCmd =
new MySqlCommand(
"SELECT TABLE_NAME, TABLE_COMMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA=?dbname",
dbcon);
tablesCmd.Parameters.AddWithValue("?dbname", dbcon.Database);
CheckConnection();
using (MySqlDataReader tables = tablesCmd.ExecuteReader())
{
while (tables.Read())
{
try
{
string tableName = (string)tables["TABLE_NAME"];
string comment = (string)tables["TABLE_COMMENT"];
if (tableList.ContainsKey(tableName))
{
tableList[tableName] = comment;
}
}
catch (Exception e)
{
m_log.Error(e.ToString());
}
}
tables.Close();
}
}
}
/// <summary>
/// Execute a SQL statement stored in a resource, as a string
/// </summary>