Do the same for SQLite and MSSQL
parent
2c05caec7f
commit
9725b829d5
|
@ -62,7 +62,7 @@ namespace OpenSim.Data.MSSQL
|
|||
|
||||
public GridUserData[] GetAll(string userID)
|
||||
{
|
||||
return base.Get("UserID LIKE {0}%", userID);
|
||||
return base.Get(String.Format("UserID LIKE {0}%", userID));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ namespace OpenSim.Data.SQLite
|
|||
|
||||
public GridUserData[] GetAll(string userID)
|
||||
{
|
||||
return base.Get("UserID LIKE {0}%", userID);
|
||||
return base.Get(String.Format("UserID LIKE {0}%", userID));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue