Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated JavaDocs across driver - Part 2 #760

Merged
merged 12 commits into from
Jul 25, 2018
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public interface ISQLServerDataSource extends javax.sql.CommonDataSource {
public boolean getEncrypt();

/**
* Sets the value to enable/disable Transparent Netowrk IP Resolution (TNIR) Beginning in version 6.0 of the
* Sets the value to enable/disable Transparent Netowrk IP Resolution (TNIR). Beginning in version 6.0 of the
* Microsoft JDBC Driver for SQL Server, a new connection property transparentNetworkIPResolution (TNIR) is added
* for transparent connection to Always On availability groups or to a server which has multiple IP addresses
* associated. When transparentNetworkIPResolution is true, the driver attempts to connect to the first IP address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public byte[] encryptColumnEncryptionKey(String masterKeyPath, String encryption
}

/**
* Encrypt. plainText with the certificate provided.
* Encrypt plainText with the certificate provided.
*
* @param plainText
* plain CEK to be encrypted
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ SqlFedAuthToken getAuthenticationResult() {
}

/**
* Eencapsulates the data to be sent to the server as part of Federated Authentication Feature Extension.
* Encapsulates the data to be sent to the server as part of Federated Authentication Feature Extension.
*/
class FederatedAuthenticationFeatureExtensionData {
boolean fedAuthRequiredPreLoginResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ private void parseQueryMetaFor2008(ResultSet rsQueryMeta) throws SQLServerExcept
}

/**
* Parses escaped strings properly e.g.[Table Name, ] using tokenizer/
* Parses escaped strings properly e.g.[Table Name, ] using tokenizer.
*
* @param st
* string tokenizer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


/**
* Represents a database physical connection in a connection pool. If provides methods for the connection pool manager
* Represents a physical database connection in a connection pool. If provides methods for the connection pool manager
* to manage the connection pool. Applications typically do not instantiate these connections directly.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ final void closeInternal() {
}

/**
* Intializes the statement parameters.
* Initializes the statement parameters.
*
* @param nParams
* Number of parameters to Intialize.
* Number of parameters to initialize.
*/
final void initParams(int nParams) {
inOutParam = new Parameter[nParams];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2331,7 +2331,7 @@ public final String getResponseBuffering() throws SQLServerException {


/**
* Provides a help class that does some basic parsing work for SQL statements that are stored procedure calls.
* Provides a helper class that does some basic parsing work for SQL statements that are stored procedure calls.
*
* - Determines whether the SQL uses JDBC call syntax ("{[? =] call procedure_name...}") or T-SQL EXECUTE syntax ("EXEC
* [@p0 =] procedure_name..."). If JDBC call syntax is present, it gets rewritten as T-SQL EXECUTE syntax.
Expand Down