Tweak presence handling and whip up a database connector and handler

for testign the new generic table handling
This commit is contained in:
Melanie
2009-11-18 08:21:28 +00:00
parent 0cd3bf074a
commit 06ecdf1967
5 changed files with 42 additions and 4 deletions

View File

@@ -190,11 +190,13 @@ namespace OpenSim.Data.MySQL
return DoQuery(cmd);
}
public void Store(T row)
public bool Store(T row)
{
MySqlCommand cmd = new MySqlCommand();
string query = "";
return false;
}
}
}