apparently I missed one of the old version routines that could be
removed. Removing that now.0.6.0-stable
parent
a721f2cfe4
commit
abb0ad36bd
|
@ -253,45 +253,6 @@ namespace OpenSim.Data.MySQL
|
||||||
m_lastConnectionUse = timeNow;
|
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>
|
/// <summary>
|
||||||
/// Execute a SQL statement stored in a resource, as a string
|
/// Execute a SQL statement stored in a resource, as a string
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue