MINOR Moved SET TEXTSIZE query into the else statement on MSSQLDatabase::__construct()

This commit is contained in:
Sean Harvey 2009-05-27 00:51:47 +00:00
parent 42d70770f0
commit ed19021ea0

View File

@ -55,9 +55,9 @@ class MSSQLDatabase extends Database {
// Configure the connection // Configure the connection
$this->query('SET QUOTED_IDENTIFIER ON'); $this->query('SET QUOTED_IDENTIFIER ON');
}
$this->query('SET TEXTSIZE 2147483647'); $this->query('SET TEXTSIZE 2147483647');
} }
}
/** /**
* This will set up the full text search capabilities. * This will set up the full text search capabilities.