Checking in latest SDALEO changes optimizing Advantage really only.
This commit is contained in:
@@ -26,12 +26,12 @@ namespace Sdaleo.Systems
|
||||
public const string CharSet_NotAllowedInDirectorPaths = @"/*?<>|" + "\"";
|
||||
|
||||
// Allowed
|
||||
public const string CharSet_AllowedUserNames = CharSet_CharsNum + " -_";
|
||||
public const string CharSet_AllowedPasswords = CharSet_CharsNum + CharSet_CharsSpecialKeyboardAscii;
|
||||
public const string CharSet_AllowedUserNames = CharSet_CharsAlphaNum + " -_";
|
||||
public const string CharSet_AllowedPasswords = CharSet_CharsAlphaNum + CharSet_CharsSpecialKeyboardAscii;
|
||||
public const string CharSet_AllowedServerNames = CharSet_CharsSambaComputerNames + CharSet_CharsIPAddress; // we allow IP addresses as computer names
|
||||
public const string CharSet_AllowedInstanceNames = CharSet_CharsAlphaNum + "$-_";
|
||||
public const string CharSet_AllowedDatabaseNames = CharSet_CharsAlphaNum + CharSet_CharsSpecialKeyboardAscii;
|
||||
public const string CharSet_AllowedTableNames = CharSet_CharsNum + " -_";
|
||||
public const string CharSet_AllowedTableNames = CharSet_CharsAlphaNum + " -_";
|
||||
|
||||
/// <summary>
|
||||
/// Generic Function to use with Allowed Character Sets above
|
||||
|
||||
Reference in New Issue
Block a user