File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
src/main/java/com/microsoft/azure/functions/sql/annotation Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 44
55 <groupId >com.microsoft.azure.functions</groupId >
66 <artifactId >azure-functions-java-library-sql</artifactId >
7- <version >0.1.0 </version > <!-- Update the dependency version in samples-java/pom.xml too if this version is updated. -->
7+ <version >0.1.1 </version > <!-- Update the dependency version in samples-java/pom.xml too if this version is updated. -->
88 <packaging >jar</packaging >
99
1010 <parent >
Original file line number Diff line number Diff line change 1717@ Target (ElementType .PARAMETER )
1818@ CustomBinding (direction = "in" , name = "sql" , type = "sql" )
1919public @interface SQLInput {
20+ /**
21+ * The variable name used in function.json.
22+ */
23+ String name () default "sql" ;
24+
2025 /**
2126 * Query string or name of stored procedure to be run.
2227 */
Original file line number Diff line number Diff line change 1818@ Target ({ ElementType .PARAMETER , ElementType .METHOD })
1919@ CustomBinding (direction = "out" , name = "sql" , type = "sql" )
2020public @interface SQLOutput {
21+ /**
22+ * The variable name used in function.json.
23+ */
24+ String name () default "sql" ;
25+
2126 /**
2227 * Name of the table to upsert data to.
2328 */
You can’t perform that action at this time.
0 commit comments