Do the same for SQLite and MSSQL

cpu-performance
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

@ -62,7 +62,7 @@ namespace OpenSim.Data.MSSQL
public GridUserData[] GetAll(string userID) public GridUserData[] GetAll(string userID)
{ {
return base.Get("UserID LIKE {0}%", userID); return base.Get(String.Format("UserID LIKE {0}%", userID));
} }
} }

View File

@ -58,7 +58,7 @@ namespace OpenSim.Data.SQLite
public GridUserData[] GetAll(string userID) public GridUserData[] GetAll(string userID)
{ {
return base.Get("UserID LIKE {0}%", userID); return base.Get(String.Format("UserID LIKE {0}%", userID));
} }
} }