Thanks Gavin Hird for a fix for Mantis 0007604: DeleteClassifiedRecord exception PGSQL
parent
2c5a3ff9f0
commit
3aa9e786de
|
@ -46,7 +46,8 @@ namespace OpenSim.Data.PGSQL
|
||||||
#region Properites
|
#region Properites
|
||||||
string ConnectionString
|
string ConnectionString
|
||||||
{
|
{
|
||||||
get; set;
|
get;
|
||||||
|
set;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual Assembly Assembly
|
protected virtual Assembly Assembly
|
||||||
|
@ -219,7 +220,7 @@ namespace OpenSim.Data.PGSQL
|
||||||
{
|
{
|
||||||
string query = string.Empty;
|
string query = string.Empty;
|
||||||
|
|
||||||
query = @"DELETE FROM classifieds WHERE classifieduuid = :ClasifiedId ;";
|
query = @"DELETE FROM classifieds WHERE classifieduuid = :ClassifiedId ;";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue