@@ -677,7 +677,7 @@ internal static partial class DbConnectionStringKeywords
677
677
// internal const string NamedConnection = "Named Connection";
678
678
679
679
// SqlClient
680
- internal const string ApplicationIntent = "ApplicationIntent " ;
680
+ internal const string ApplicationIntent = "Application Intent " ;
681
681
internal const string ApplicationName = "Application Name" ;
682
682
internal const string AsynchronousProcessing = "Asynchronous Processing" ;
683
683
internal const string AttachDBFilename = "AttachDbFilename" ;
@@ -688,18 +688,18 @@ internal static partial class DbConnectionStringKeywords
688
688
internal const string Encrypt = "Encrypt" ;
689
689
internal const string FailoverPartner = "Failover Partner" ;
690
690
internal const string InitialCatalog = "Initial Catalog" ;
691
- internal const string MultipleActiveResultSets = "MultipleActiveResultSets " ;
692
- internal const string MultiSubnetFailover = "MultiSubnetFailover " ;
691
+ internal const string MultipleActiveResultSets = "Multiple Active Result Sets " ;
692
+ internal const string MultiSubnetFailover = "Multi Subnet Failover " ;
693
693
internal const string NetworkLibrary = "Network Library" ;
694
694
internal const string PacketSize = "Packet Size" ;
695
695
internal const string Replication = "Replication" ;
696
696
internal const string TransactionBinding = "Transaction Binding" ;
697
- internal const string TrustServerCertificate = "TrustServerCertificate " ;
697
+ internal const string TrustServerCertificate = "Trust Server Certificate " ;
698
698
internal const string TypeSystemVersion = "Type System Version" ;
699
699
internal const string UserInstance = "User Instance" ;
700
700
internal const string WorkstationID = "Workstation ID" ;
701
- internal const string ConnectRetryCount = "ConnectRetryCount " ;
702
- internal const string ConnectRetryInterval = "ConnectRetryInterval " ;
701
+ internal const string ConnectRetryCount = "Connect Retry Count " ;
702
+ internal const string ConnectRetryInterval = "Connect Retry Interval " ;
703
703
internal const string Authentication = "Authentication" ;
704
704
internal const string ColumnEncryptionSetting = "Column Encryption Setting" ;
705
705
internal const string EnclaveAttestationUrl = "Enclave Attestation Url" ;
@@ -720,7 +720,7 @@ internal static partial class DbConnectionStringKeywords
720
720
internal const string Pooling = "Pooling" ;
721
721
internal const string MinPoolSize = "Min Pool Size" ;
722
722
#if netcoreapp
723
- internal const string PoolBlockingPeriod = "PoolBlockingPeriod " ;
723
+ internal const string PoolBlockingPeriod = "Pool Blocking Period " ;
724
724
#endif
725
725
}
726
726
@@ -732,6 +732,9 @@ internal static class DbConnectionStringSynonyms
732
732
//internal const string ApplicationName = APP;
733
733
internal const string APP = "app" ;
734
734
735
+ //internal const string ApplicationIntent = APPLICATIONINTENT;
736
+ internal const string APPLICATIONINTENT = "ApplicationIntent" ;
737
+
735
738
//internal const string AttachDBFilename = EXTENDEDPROPERTIES+","+INITIALFILENAME;
736
739
internal const string EXTENDEDPROPERTIES = "extended properties" ;
737
740
internal const string INITIALFILENAME = "initial file name" ;
@@ -740,6 +743,12 @@ internal static class DbConnectionStringSynonyms
740
743
internal const string CONNECTIONTIMEOUT = "connection timeout" ;
741
744
internal const string TIMEOUT = "timeout" ;
742
745
746
+ //internal const string ConnectRetryCount = CONNECTRETRYCOUNT;
747
+ internal const string CONNECTRETRYCOUNT = "ConnectRetryCount" ;
748
+
749
+ //internal const string ConnectRetryInterval = CONNECTRETRYINTERVAL;
750
+ internal const string CONNECTRETRYINTERVAL = "ConnectRetryInterval" ;
751
+
743
752
//internal const string CurrentLanguage = LANGUAGE;
744
753
internal const string LANGUAGE = "language" ;
745
754
@@ -759,17 +768,30 @@ internal static class DbConnectionStringSynonyms
759
768
//internal const string LoadBalanceTimeout = ConnectionLifetime;
760
769
internal const string ConnectionLifetime = "connection lifetime" ;
761
770
771
+ //internal const string MultipleActiveResultSets = MULTIPLEACTIVERESULTSETS;
772
+ internal const string MULTIPLEACTIVERESULTSETS = "MultipleActiveResultSets" ;
773
+
774
+ //internal const string MultiSubnetFailover = MULTISUBNETFAILOVER;
775
+ internal const string MULTISUBNETFAILOVER = "MultiSubnetFailover" ;
776
+
762
777
//internal const string NetworkLibrary = NET+","+NETWORK;
763
778
internal const string NET = "net" ;
764
779
internal const string NETWORK = "network" ;
765
780
781
+ #if netcoreapp
782
+ //internal const string PoolBlockingPeriod = POOLBLOCKINGPERIOD;
783
+ internal const string POOLBLOCKINGPERIOD = "PoolBlockingPeriod" ;
784
+ #endif
766
785
767
786
//internal const string Password = Pwd;
768
787
internal const string Pwd = "pwd" ;
769
788
770
789
//internal const string PersistSecurityInfo = PERSISTSECURITYINFO;
771
790
internal const string PERSISTSECURITYINFO = "persistsecurityinfo" ;
772
791
792
+ //internal const string TrustServerCertificate = TRUSTSERVERCERTIFICATE;
793
+ internal const string TRUSTSERVERCERTIFICATE = "TrustServerCertificate" ;
794
+
773
795
//internal const string UserID = UID+","+User;
774
796
internal const string UID = "uid" ;
775
797
internal const string User = "user" ;
0 commit comments