Npgsql package upgrade

This commit is contained in:
Paul Schneider 2015-10-01 21:30:05 +02:00
commit 82de63a0ba
17 changed files with 53 additions and 23 deletions

View file

@ -202,7 +202,7 @@ namespace Npgsql.Web
return c;
using (NpgsqlConnection cnx = new NpgsqlConnection (connectionString))
using (NpgsqlCommand cmd = cnx.CreateCommand ()) {
cmd.CommandText = "SELECT * from profiledata,profiles where " +
cmd.CommandText = "SELECT * from profiledata, profiles where " +
"profiledata.uniqueid = profiles.uniqueid " +
"and profiles.username = @username " +
"and profiles.applicationname = @appname";