Do the same for SQLite and MSSQL

This commit is contained in:
Diva Canto
2013-07-02 15:48:30 -07:00
parent 2c05caec7f
commit 9725b829d5
2 changed files with 2 additions and 2 deletions

View File

@@ -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));
}
}