Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
0e401238e7
|
@ -500,7 +500,7 @@ namespace OpenSim.Data.PGSQL
|
|||
public List<int> GetEstatesByOwner(UUID ownerID)
|
||||
{
|
||||
List<int> result = new List<int>();
|
||||
string sql = "select \"estateID\" from estate_settings where \"EstateOwner\" = :EstateOwner";
|
||||
string sql = "select \"EstateID\" from estate_settings where \"EstateOwner\" = :EstateOwner";
|
||||
using (NpgsqlConnection conn = new NpgsqlConnection(m_connectionString))
|
||||
{
|
||||
conn.Open();
|
||||
|
|
|
@ -46,7 +46,8 @@ namespace OpenSim.Data.PGSQL
|
|||
#region Properites
|
||||
string ConnectionString
|
||||
{
|
||||
get; set;
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
protected virtual Assembly Assembly
|
||||
|
@ -219,7 +220,7 @@ namespace OpenSim.Data.PGSQL
|
|||
{
|
||||
string query = string.Empty;
|
||||
|
||||
query = @"DELETE FROM classifieds WHERE classifieduuid = :ClasifiedId ;";
|
||||
query = @"DELETE FROM classifieds WHERE classifieduuid = :ClassifiedId ;";
|
||||
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue