Skip to content

Commit 2adedb5

Browse files
committed
Fix blocking review issues: sentence case for headings and add H2 section for TOC
1 parent f3b022f commit 2adedb5

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

docs/connect/jdbc/reference/preparestatement-method-java-lang-string-int-array.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apilocation: "sqljdbc.jar"
1111
apiname: "SQLServerConnection.prepareStatement (java.lang.String, int[])"
1212
apitype: "Assembly"
1313
---
14-
# prepareStatement Method (java.lang.String, int[])
14+
# prepareStatement method (java.lang.String, int[])
1515

1616
[!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)]
1717

@@ -34,7 +34,7 @@ public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
3434

3535
An array of ints.
3636

37-
## Return Value
37+
## Return value
3838

3939
A PreparedStatement object.
4040

docs/odbc/reference/develop-app/batches-of-sql-statements.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ helpviewer_keywords:
1515
---
1616
# Batches of SQL Statements
1717

18+
## Overview
19+
1820
A batch of SQL statements is a group of two or more SQL statements or a single SQL statement that has the same effect as a group of two or more SQL statements. In some implementations, the entire batch statement is executed before any results are available. This is often more efficient than submitting statements separately, because network traffic can often be reduced and the data source can sometimes optimize execution of a batch of SQL statements. In other implementations, calling **SQLMoreResults** triggers the execution of the next statement in the batch. ODBC supports the following types of batches:
1921

2022
- **Explicit Batches** An *explicit batch* is two or more SQL statements separated by semicolons (;). For example, the following batch of SQL statements opens a new sales order. This requires inserting rows into both the Orders and Lines tables. Note that there's no semicolon after the last statement.

0 commit comments

Comments
 (0)