Updated field value check to surround value with quotes

This commit is contained in:
Matt@MBP13-PC
2012-08-02 14:58:39 -01:00
parent 2a55868846
commit c5adb6a2e1
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ namespace SqlCE4Umbraco
/// <summary>The specifications to determine the database version.</summary>
private static readonly VersionSpecs[] m_VersionSpecs = new VersionSpecs[] {
new VersionSpecs("CONSTRAINT_NAME","INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS", "FK_umbracoUser2app_umbracoApp", false, DatabaseVersion.Version4_8),
new VersionSpecs("CONSTRAINT_NAME","INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS", "'FK_umbracoUser2app_umbracoApp'", false, DatabaseVersion.Version4_8),
new VersionSpecs("id","umbracoNode", "-21", DatabaseVersion.Version4_1),
new VersionSpecs("action","umbracoAppTree",DatabaseVersion.Version4),
new VersionSpecs("description","cmsContentType",DatabaseVersion.Version3),

View File

@@ -25,7 +25,7 @@ namespace umbraco.DataLayer.SqlHelpers.MySql
/// <summary>The specifications to determine the database version.</summary>
private static readonly VersionSpecs[] m_VersionSpecs = new VersionSpecs[] {
new VersionSpecs("CONSTRAINT_NAME","INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS", "FK_umbracoUser2app_umbracoApp", false, DatabaseVersion.Version4_8),
new VersionSpecs("CONSTRAINT_NAME","INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS", "'FK_umbracoUser2app_umbracoApp'", false, DatabaseVersion.Version4_8),
new VersionSpecs("id","umbracoNode", "-21", DatabaseVersion.Version4_1),
new VersionSpecs("action","umbracoAppTree",DatabaseVersion.Version4),
new VersionSpecs("description","cmsContentType",DatabaseVersion.Version3),

View File

@@ -24,7 +24,7 @@ namespace umbraco.DataLayer.SqlHelpers.SqlServer
/// <summary>The specifications to determine the database version.</summary>
private static readonly VersionSpecs[] m_VersionSpecs = new VersionSpecs[] {
new VersionSpecs("CONSTRAINT_NAME","INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS", "FK_umbracoUser2app_umbracoApp", false, DatabaseVersion.Version4_8),
new VersionSpecs("CONSTRAINT_NAME","INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS", "'FK_umbracoUser2app_umbracoApp'", false, DatabaseVersion.Version4_8),
new VersionSpecs("id","umbracoNode", "-21", DatabaseVersion.Version4_1),
new VersionSpecs("action","umbracoAppTree",DatabaseVersion.Version4),
new VersionSpecs("description","cmsContentType",DatabaseVersion.Version3),