COLLOCATE DATABASE_DEFAULT replaced with Latin1_General1_CI_AS
This commit is contained in:
parent
b652fab29e
commit
c958211ce7
3 changed files with 7 additions and 7 deletions
|
@ -80,7 +80,7 @@ namespace WebsitePanel.Installer.Core
|
|||
|
||||
private WebClient fileLoader;
|
||||
|
||||
public BitlyLoader(string remoteFile)
|
||||
internal BitlyLoader(string remoteFile)
|
||||
: base(remoteFile)
|
||||
{
|
||||
InitFileLoader();
|
||||
|
@ -175,7 +175,7 @@ namespace WebsitePanel.Installer.Core
|
|||
public event EventHandler<LoaderEventArgs<Int32>> ProgressChanged;
|
||||
public event EventHandler<EventArgs> OperationCompleted;
|
||||
|
||||
public Loader(string remoteFile)
|
||||
internal Loader(string remoteFile)
|
||||
{
|
||||
this.remoteFile = remoteFile;
|
||||
}
|
||||
|
|
|
@ -35704,8 +35704,8 @@ RAISERROR('You are not allowed to access this package', 16, 1)
|
|||
DECLARE @Records TABLE
|
||||
(
|
||||
RecordID int,
|
||||
RecordType nvarchar(10) COLLATE DATABASE_DEFAULT,
|
||||
RecordName nvarchar(50) COLLATE DATABASE_DEFAULT
|
||||
RecordType nvarchar(10) COLLATE Latin1_General_CI_AS,
|
||||
RecordName nvarchar(50) COLLATE Latin1_General_CI_AS
|
||||
)
|
||||
|
||||
-- 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.
|
||||
DELETE FROM ServiceProperties
|
||||
WHERE ServiceID = @ServiceID
|
||||
AND PropertyName COLLATE DATABASE_DEFAULT IN
|
||||
AND PropertyName COLLATE Latin1_General_CI_AS IN
|
||||
(
|
||||
SELECT PropertyName
|
||||
FROM OPENXML(@idoc, '/properties/property', 1)
|
||||
|
|
|
@ -1244,8 +1244,8 @@ RAISERROR('You are not allowed to access this package', 16, 1)
|
|||
DECLARE @Records TABLE
|
||||
(
|
||||
RecordID int,
|
||||
RecordType nvarchar(10) COLLATE DATABASE_DEFAULT,
|
||||
RecordName nvarchar(50) COLLATE DATABASE_DEFAULT
|
||||
RecordType nvarchar(10) COLLATE Latin1_General_CI_AS,
|
||||
RecordName nvarchar(50) COLLATE Latin1_General_CI_AS
|
||||
)
|
||||
|
||||
-- select PACKAGES DNS records
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue