Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit a1470f8

Browse files
authored
Merge pull request #549 from Microsoft/master
2017-02-07 Merge master to sqlvnext_prerelease
2 parents 1454504 + f487563 commit a1470f8

56 files changed

Lines changed: 990 additions & 979 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/ado/reference/rds-api/datafactory-object-query-method-and-createobject-method-example-vbscript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Create RDSServer.DataFactory Object using CreateObject Example (VBScript) | Microsoft Docs"
2+
title: "Create RDSServer.DataFactory Object using CreateObject (VBScript) | Microsoft Docs"
33
ms.prod: "sql-non-specified"
44
ms.technology:
55
- "drivers"

docs/ado/reference/rds-api/filter-column-criterion-value-sortcolumn-sortdirection-example-vbscript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Set RDS.DataControl Server and Bind to HTML table Example (VBScript) | Microsoft Docs"
2+
title: "Set RDS.DataControl Server and Bind to HTML table (VBScript) | Microsoft Docs"
33
ms.prod: "sql-non-specified"
44
ms.technology:
55
- "drivers"

docs/connect/jdbc/download-microsoft-jdbc-driver-for-sql-server.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ manager: "jhubbard"
2121
Use the following links to download the Microsoft JDBC Driver for SQL Server.
2222

2323
## Download Microsoft JDBC Drivers for SQL Server
24-
[Download the Microsoft JDBC Driver 6.0, 4.2, 4.1, or 4.0 for SQL Server](http://go.microsoft.com/fwlink/?LinkId=245496)
24+
* [Microsoft JDBC Driver 6.0 for SQL Server](http://go.microsoft.com/fwlink/?linkid=841535)
25+
* [Microsoft JDBC Driver 4.2 for SQL Server](http://go.microsoft.com/fwlink/?linkid=841534)
26+
* [Microsoft JDBC Driver 4.1 for SQL Server](http://go.microsoft.com/fwlink/?linkid=841533)
27+
* [Microsoft JDBC Driver 4.0 for SQL Server](http://go.microsoft.com/fwlink/?linkid=841532)
2528

2629
## Unsupported Drivers
2730
Unsupported driver versions are not available for download. We are continually improving our Java connectivity support. As such we highly recommend you work with the latest version of our JDBC driver.
2831

29-
32+
Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "execute Method (java.lang.String, int[]) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "01/19/2017"
4+
ms.date: "02/07/2017"
55
ms.prod: "sql-non-specified"
66
ms.reviewer: ""
77
ms.suite: ""
@@ -22,37 +22,38 @@ manager: "jhubbard"
2222
---
2323
# execute Method (java.lang.String, int[])
2424

25-
Runs the given SQL statement, which can return multiple results, and signals [!INCLUDE[jdbcNoVersion](../../../includes/jdbcnoversion-md.md)] that the auto-generated keys that are indicated in the given array should be made available for retrieval.
26-
27-
## Syntax
28-
29-
```
30-
31-
public final boolean execute(java.lang.String sql,
32-
int[] columnIndexes)
33-
```
34-
35-
#### Parameters
36-
*sql*
37-
38-
A **String** that contains an SQL statement.
39-
40-
*columnIndexes*
41-
42-
An array of **int**s that indicates the column indexes of the auto-generated keys that should be made available.
43-
44-
## Return Value
45-
**true** if the first result is a result set. Otherwise, **false**.
46-
47-
## Exceptions
48-
[SQLServerException](../Topic/SQLServerException%20Class.md)
49-
50-
## Remarks
51-
This execute method is specified by the execute method in the java.sql.Statement interface.
52-
53-
## See Also
54-
[execute Method (SQLServerStatement)](../Topic/execute%20Method%20(SQLServerStatement).md)
55-
[SQLServerStatement Members](../Topic/SQLServerStatement%20Members.md)
56-
[SQLServerStatement Class](../Topic/SQLServerStatement%20Class.md)
25+
Runs the given SQL statement, which can return multiple results, and signals [!INCLUDE[jdbcNoVersion](../../../includes/jdbcnoversion-md.md)] that the auto-generated keys that are indicated in the given array should be made available for retrieval.
26+
27+
## Syntax
28+
29+
```Java
30+
public final boolean execute(
31+
java.lang.String sql,
32+
int[] columnIndexes)
33+
```
34+
35+
#### Parameters
36+
*sql*
37+
38+
A **String** that contains an SQL statement.
39+
40+
*columnIndexes*
41+
42+
An array of **int**s that indicates the column indexes of the auto-generated keys that should be made available.
43+
44+
## Return Value
45+
**true** if the first result is a result set. Otherwise, **false**.
5746

58-
47+
## Exceptions
48+
[SQLServerException](./sqlserverexception-class.md)
49+
50+
## Remarks
51+
This execute method is specified by the execute method in the java.sql.Statement interface.
52+
53+
## See Also
54+
55+
[execute Method (SQLServerStatement)](./execute-method-sqlserverstatement.md)
56+
57+
[SQLServerStatement members](./sqlserverstatement-members.md)
58+
59+
[SQLServerStatement class](./sqlserverstatement-class.md)
Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "executeUpdate Method (java.lang.String) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "01/19/2017"
4+
ms.date: "02/07/2017"
55
ms.prod: "sql-non-specified"
66
ms.reviewer: ""
77
ms.suite: ""
@@ -22,34 +22,34 @@ manager: "jhubbard"
2222
---
2323
# executeUpdate Method (java.lang.String)
2424

25-
Runs the given SQL statement, which can be an INSERT, UPDATE, MERGE, or DELETE statement; or an SQL statement that returns nothing, such as an SQL DDL statement.
26-
27-
## Syntax
28-
29-
```
30-
31-
public final int executeUpdate(java.lang.String sql)
32-
```
33-
34-
#### Parameters
35-
*sql*
36-
37-
A **String** that contains the SQL statement.
38-
39-
## Return Value
40-
An **int** that indicates the number of rows affected, or 0 if using a DDL statement.
41-
42-
## Exceptions
43-
[SQLServerException](../Topic/SQLServerException%20Class.md)
44-
45-
## Remarks
46-
This executeUpdate method is specified by the executeUpdate method in the java.sql.PreparedStatement interface.
47-
48-
Calling this method will result in an exception since the SQL statement for the SQLServerPreparedStatement object is specified when the object is created.
49-
50-
## See Also
51-
[executeUpdate Method (SQLServerPreparedStatement)](../Topic/executeUpdate%20Method%20(SQLServerPreparedStatement).md)
52-
[SQLServerPreparedStatement Members](../Topic/SQLServerPreparedStatement%20Members.md)
53-
[SQLServerPreparedStatement Class](../Topic/SQLServerPreparedStatement%20Class.md)
54-
55-
25+
Runs the given SQL statement, which can be an INSERT, UPDATE, MERGE, or DELETE statement; or an SQL statement that returns nothing, such as an SQL DDL statement.
26+
27+
## Syntax
28+
29+
```
30+
public final int executeUpdate(java.lang.String sql)
31+
```
32+
33+
#### Parameters
34+
*sql*
35+
36+
A **String** that contains the SQL statement.
37+
38+
## Return Value
39+
An **int** that indicates the number of rows affected, or 0 if using a DDL statement.
40+
41+
## Exceptions
42+
[SQLServerException](./sqlserverexception-class.md)
43+
44+
## Remarks
45+
This executeUpdate method is specified by the executeUpdate method in the java.sql.PreparedStatement interface.
46+
47+
Calling this method will result in an exception since the SQL statement for the SQLServerPreparedStatement object is specified when the object is created.
48+
49+
## See Also
50+
51+
[executeUpdate Method (SQLServerPreparedStatement)](./executeupdate-method-sqlserverpreparedstatement.md)
52+
53+
[SQLServerPreparedStatement Members](./sqlserverpreparedstatement-members.md)
54+
55+
[SQLServerPreparedStatement Class](./sqlserverpreparedstatement-class.md)

docs/connect/jdbc/reference/getobject-method-java-lang-string-java-util-map-sqlserverresultset.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
---
2-
title: "getObject Method (java.lang.String, java.util.Map) (SQLServerResultSet) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "01/19/2017"
5-
ms.prod: "sql-non-specified"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.technology:
9-
- "drivers"
10-
ms.tgt_pltfrm: ""
11-
ms.topic: "article"
12-
apiname:
13-
- "SQLServerResultSet.getObject (java.lang.String, java.util.Map)"
14-
apilocation:
15-
- "sqljdbc.jar"
16-
apitype: "Assembly"
17-
ms.assetid: 8104406b-417d-4ff5-9aca-183ee0f76762
18-
caps.latest.revision: 15
19-
author: "MightyPen"
20-
ms.author: "genemi"
21-
manager: "jhubbard"
22-
---
23-
# getObject Method (java.lang.String, java.util.Map) (SQLServerResultSet)
24-
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
25-
1+
---
2+
title: "getObject Method (java.lang.String, java.util.Map) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "01/19/2017"
5+
ms.prod: "sql-non-specified"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.technology:
9+
- "drivers"
10+
ms.tgt_pltfrm: ""
11+
ms.topic: "article"
12+
apiname:
13+
- "SQLServerResultSet.getObject (java.lang.String, java.util.Map)"
14+
apilocation:
15+
- "sqljdbc.jar"
16+
apitype: "Assembly"
17+
ms.assetid: 8104406b-417d-4ff5-9aca-183ee0f76762
18+
caps.latest.revision: 15
19+
author: "MightyPen"
20+
ms.author: "genemi"
21+
manager: "jhubbard"
22+
---
23+
# getObject Method (java.lang.String, java.util.Map) (SQLServerResultSet)
24+
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
25+
2626
Gets the value of the designated column name in the current row of this [SQLServerResultSet](../../../connect/jdbc/reference/sqlserverresultset-class.md) object as an object in the Java programming language, using the given Map object.
2727

2828
> [!NOTE]

docs/connect/jdbc/reference/gettime-method-java-lang-string-java-util-calendar-sqlserverresultset.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
---
2-
title: "getTime Method (java.lang.String, java.util.Calendar) (SQLServerResultSet) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "01/19/2017"
5-
ms.prod: "sql-non-specified"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.technology:
9-
- "drivers"
10-
ms.tgt_pltfrm: ""
11-
ms.topic: "article"
12-
apiname:
13-
- "SQLServerResultSet.getTime (java.lang.String, java.util.Calendar)"
14-
apilocation:
15-
- "sqljdbc.jar"
16-
apitype: "Assembly"
17-
ms.assetid: 13b51f77-cec9-45fc-862e-3d2bb2d718d7
18-
caps.latest.revision: 10
19-
author: "MightyPen"
20-
ms.author: "genemi"
21-
manager: "jhubbard"
22-
---
23-
# getTime Method (java.lang.String, java.util.Calendar) (SQLServerResultSet)
24-
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
25-
1+
---
2+
title: "getTime Method (java.lang.String, java.util.Calendar) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "01/19/2017"
5+
ms.prod: "sql-non-specified"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.technology:
9+
- "drivers"
10+
ms.tgt_pltfrm: ""
11+
ms.topic: "article"
12+
apiname:
13+
- "SQLServerResultSet.getTime (java.lang.String, java.util.Calendar)"
14+
apilocation:
15+
- "sqljdbc.jar"
16+
apitype: "Assembly"
17+
ms.assetid: 13b51f77-cec9-45fc-862e-3d2bb2d718d7
18+
caps.latest.revision: 10
19+
author: "MightyPen"
20+
ms.author: "genemi"
21+
manager: "jhubbard"
22+
---
23+
# getTime Method (java.lang.String, java.util.Calendar) (SQLServerResultSet)
24+
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
25+
2626
Retrieves the value of the designated column name in the current row of this [SQLServerResultSet](../../../connect/jdbc/reference/sqlserverresultset-class.md) object as a java.sql.Time object in the Java programming language, using the given Calendar object.
2727

2828
## Syntax

docs/connect/jdbc/reference/gettimestamp-method-int-java-util-calendar-sqlserverresultset.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
---
2-
title: "getTimestamp Method (int, java.util.Calendar) (SQLServerResultSet) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "01/19/2017"
5-
ms.prod: "sql-non-specified"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.technology:
9-
- "drivers"
10-
ms.tgt_pltfrm: ""
11-
ms.topic: "article"
12-
apiname:
13-
- "SQLServerResultSet.getTimestamp (int, java.util.Calendar)"
14-
apilocation:
15-
- "sqljdbc.jar"
16-
apitype: "Assembly"
17-
ms.assetid: f2dd5688-7344-437a-8716-7024fb8e9c31
18-
caps.latest.revision: 8
19-
author: "MightyPen"
20-
ms.author: "genemi"
21-
manager: "jhubbard"
22-
---
23-
# getTimestamp Method (int, java.util.Calendar) (SQLServerResultSet)
24-
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
25-
1+
---
2+
title: "getTimestamp Method (int, java.util.Calendar) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "01/19/2017"
5+
ms.prod: "sql-non-specified"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.technology:
9+
- "drivers"
10+
ms.tgt_pltfrm: ""
11+
ms.topic: "article"
12+
apiname:
13+
- "SQLServerResultSet.getTimestamp (int, java.util.Calendar)"
14+
apilocation:
15+
- "sqljdbc.jar"
16+
apitype: "Assembly"
17+
ms.assetid: f2dd5688-7344-437a-8716-7024fb8e9c31
18+
caps.latest.revision: 8
19+
author: "MightyPen"
20+
ms.author: "genemi"
21+
manager: "jhubbard"
22+
---
23+
# getTimestamp Method (int, java.util.Calendar) (SQLServerResultSet)
24+
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
25+
2626
Retrieves the value of the designated column index in the current row of this [SQLServerResultSet](../../../connect/jdbc/reference/sqlserverresultset-class.md) object as a java.sql.Timestamp object in the Java programming language, using a Calendar object.
2727

2828
## Syntax

0 commit comments

Comments
 (0)