COLLOCATE DATABASE_DEFAULT replaced with Latin1_General1_CI_AS

This commit is contained in:
robvde 2012-07-04 18:09:25 +04:00
parent b652fab29e
commit c958211ce7
3 changed files with 7 additions and 7 deletions

View file

@ -80,7 +80,7 @@ namespace WebsitePanel.Installer.Core
private WebClient fileLoader; private WebClient fileLoader;
public BitlyLoader(string remoteFile) internal BitlyLoader(string remoteFile)
: base(remoteFile) : base(remoteFile)
{ {
InitFileLoader(); InitFileLoader();
@ -175,7 +175,7 @@ namespace WebsitePanel.Installer.Core
public event EventHandler<LoaderEventArgs<Int32>> ProgressChanged; public event EventHandler<LoaderEventArgs<Int32>> ProgressChanged;
public event EventHandler<EventArgs> OperationCompleted; public event EventHandler<EventArgs> OperationCompleted;
public Loader(string remoteFile) internal Loader(string remoteFile)
{ {
this.remoteFile = remoteFile; this.remoteFile = remoteFile;
} }

View file

@ -35704,8 +35704,8 @@ RAISERROR('You are not allowed to access this package', 16, 1)
DECLARE @Records TABLE DECLARE @Records TABLE
( (
RecordID int, RecordID int,
RecordType nvarchar(10) COLLATE DATABASE_DEFAULT, RecordType nvarchar(10) COLLATE Latin1_General_CI_AS,
RecordName nvarchar(50) COLLATE DATABASE_DEFAULT RecordName nvarchar(50) COLLATE Latin1_General_CI_AS
) )
-- select PACKAGES DNS records -- select PACKAGES DNS records
@ -44137,7 +44137,7 @@ EXEC sp_xml_preparedocument @idoc OUTPUT, @xml
-- Execute a SELECT statement that uses the OPENXML rowset provider. -- Execute a SELECT statement that uses the OPENXML rowset provider.
DELETE FROM ServiceProperties DELETE FROM ServiceProperties
WHERE ServiceID = @ServiceID WHERE ServiceID = @ServiceID
AND PropertyName COLLATE DATABASE_DEFAULT IN AND PropertyName COLLATE Latin1_General_CI_AS IN
( (
SELECT PropertyName SELECT PropertyName
FROM OPENXML(@idoc, '/properties/property', 1) FROM OPENXML(@idoc, '/properties/property', 1)

View file

@ -1244,8 +1244,8 @@ RAISERROR('You are not allowed to access this package', 16, 1)
DECLARE @Records TABLE DECLARE @Records TABLE
( (
RecordID int, RecordID int,
RecordType nvarchar(10) COLLATE DATABASE_DEFAULT, RecordType nvarchar(10) COLLATE Latin1_General_CI_AS,
RecordName nvarchar(50) COLLATE DATABASE_DEFAULT RecordName nvarchar(50) COLLATE Latin1_General_CI_AS
) )
-- select PACKAGES DNS records -- select PACKAGES DNS records