@vertx/sql-client
Advanced tools
Comparing version 3.9.3 to 3.9.4
@@ -263,3 +263,3 @@ /* | ||
/** | ||
* Get a column name at <code>pos</code>. | ||
* Get a column name for the given <code>column</code>. | ||
*/ | ||
@@ -274,3 +274,3 @@ getColumnName(pos: number) : string; | ||
/** | ||
* Get an object value at <code>pos</code>. | ||
* Get an object value for the given <code>column</code>. | ||
*/ | ||
@@ -280,3 +280,3 @@ getValue(name: string | number) : any; | ||
/** | ||
* Get a boolean value at <code>pos</code>. | ||
* Get a boolean value for the given <code>column</code>. | ||
*/ | ||
@@ -286,3 +286,3 @@ getBoolean(name: string | number) : boolean; | ||
/** | ||
* Get a short value at <code>pos</code>. | ||
* Get a short value for the given <code>column</code>. | ||
*/ | ||
@@ -292,3 +292,3 @@ getShort(name: string | number) : number; | ||
/** | ||
* Get an integer value at <code>pos</code>. | ||
* Get an integer value for the given <code>column</code>. | ||
*/ | ||
@@ -298,3 +298,3 @@ getInteger(name: string | number) : number; | ||
/** | ||
* Get a long value at <code>pos</code>. | ||
* Get a long value for the given <code>column</code>. | ||
*/ | ||
@@ -304,3 +304,3 @@ getLong(name: string | number) : number; | ||
/** | ||
* Get a float value at <code>pos</code>. | ||
* Get a float value for the given <code>column</code>. | ||
*/ | ||
@@ -310,3 +310,3 @@ getFloat(name: string | number) : number; | ||
/** | ||
* Get a double value at <code>pos</code>. | ||
* Get a double value for the given <code>column</code>. | ||
*/ | ||
@@ -316,3 +316,3 @@ getDouble(name: string | number) : number; | ||
/** | ||
* Get a string value at <code>pos</code>. | ||
* Get a string value for the given <code>column</code>. | ||
*/ | ||
@@ -322,3 +322,3 @@ getString(name: string | number) : string; | ||
/** | ||
* Get a buffer value at <code>pos</code>. | ||
* Get a buffer value for the given <code>column</code>. | ||
*/ | ||
@@ -328,8 +328,13 @@ getBuffer(name: string | number) : Buffer; | ||
/** | ||
* Get a temporal value at <code>pos</code>. | ||
* Get a numeric value for the given <code>column</code>. | ||
*/ | ||
getNumeric(name: string | number) : any /* io.vertx.sqlclient.data.Numeric */; | ||
/** | ||
* Get a temporal value for the given <code>column</code>. | ||
*/ | ||
getTemporal(name: string | number) : any /* java.time.temporal.Temporal */; | ||
/** | ||
* Get LocalDate value at <code>pos</code>. | ||
* Get LocalDate value for the given <code>column</code>. | ||
*/ | ||
@@ -339,3 +344,3 @@ getLocalDate(name: string | number) : Date; | ||
/** | ||
* Get LocalTime value at <code>pos</code>. | ||
* Get LocalTime value for the given <code>column</code>. | ||
*/ | ||
@@ -345,3 +350,3 @@ getLocalTime(name: string | number) : any /* java.time.LocalTime */; | ||
/** | ||
* Get LocalDateTime value at <code>pos</code>. | ||
* Get LocalDateTime value for the given <code>column</code>. | ||
*/ | ||
@@ -351,3 +356,3 @@ getLocalDateTime(name: string | number) : Date; | ||
/** | ||
* Get OffsetTime value at <code>pos</code>. | ||
* Get OffsetTime value for the given <code>column</code>. | ||
*/ | ||
@@ -357,3 +362,3 @@ getOffsetTime(name: string | number) : any /* java.time.OffsetTime */; | ||
/** | ||
* Get OffsetDateTime value at <code>pos</code>. | ||
* Get OffsetDateTime value for the given <code>column</code>. | ||
*/ | ||
@@ -363,3 +368,3 @@ getOffsetDateTime(name: string | number) : any /* java.time.OffsetDateTime */; | ||
/** | ||
* Get UUID value at <code>pos</code>. | ||
* Get UUID value for the given <code>column</code>. | ||
*/ | ||
@@ -369,3 +374,3 @@ getUUID(name: string | number) : any /* java.util.UUID */; | ||
/** | ||
* Get value at <code>pos</code>. | ||
* Get value for the given <code>column</code>. | ||
*/ | ||
@@ -375,3 +380,3 @@ getBigDecimal(name: string | number) : any /* java.math.BigDecimal */; | ||
/** | ||
* Get an array of Boolean value at <code>pos</code>. | ||
* Get an array of Boolean value for the given <code>column</code>. | ||
*/ | ||
@@ -381,3 +386,3 @@ getBooleanArray(name: string | number) : boolean[]; | ||
/** | ||
* Get an array of Short value at <code>pos</code>. | ||
* Get an array of Short value for the given <code>column</code>. | ||
*/ | ||
@@ -387,3 +392,3 @@ getShortArray(name: string | number) : number[]; | ||
/** | ||
* Get an array of Integer value at <code>pos</code>. | ||
* Get an array of Integer value for the given <code>column</code>. | ||
*/ | ||
@@ -393,3 +398,3 @@ getIntegerArray(name: string | number) : number[]; | ||
/** | ||
* Get an array of Long value at <code>pos</code>. | ||
* Get an array of Long value for the given <code>column</code>. | ||
*/ | ||
@@ -399,3 +404,3 @@ getLongArray(name: string | number) : number[]; | ||
/** | ||
* Get an array of Float value at <code>pos</code>. | ||
* Get an array of Float value for the given <code>column</code>. | ||
*/ | ||
@@ -405,3 +410,3 @@ getFloatArray(name: string | number) : number[]; | ||
/** | ||
* Get an array of Double value at <code>pos</code>. | ||
* Get an array of Double value for the given <code>column</code>. | ||
*/ | ||
@@ -411,8 +416,13 @@ getDoubleArray(name: string | number) : number[]; | ||
/** | ||
* Get an array of String value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
getNumericArray(name: string | number) : any /* io.vertx.sqlclient.data.Numeric[] */; | ||
/** | ||
* Get an array of String value for the given <code>column</code>. | ||
*/ | ||
getStringArray(name: string | number) : string[]; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -422,3 +432,3 @@ getTemporalArray(name: string | number) : any /* java.time.temporal.Temporal[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -428,3 +438,3 @@ getLocalDateArray(name: string | number) : any /* java.time.LocalDate[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -434,3 +444,3 @@ getLocalTimeArray(name: string | number) : any /* java.time.LocalTime[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -440,3 +450,3 @@ getLocalDateTimeArray(name: string | number) : any /* java.time.LocalDateTime[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -446,3 +456,3 @@ getOffsetTimeArray(name: string | number) : any /* java.time.OffsetTime[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -452,3 +462,3 @@ getOffsetDateTimeArray(name: string | number) : any /* java.time.OffsetDateTime[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -458,3 +468,3 @@ getUUIDArray(name: string | number) : any /* java.util.UUID[] */; | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
* Get an array of value for the given <code>column</code>. | ||
*/ | ||
@@ -837,2 +847,7 @@ getBigDecimalArray(name: string | number) : any /* java.math.BigDecimal[] */; | ||
/** | ||
* Get value at <code>pos</code>. | ||
*/ | ||
getNumeric(pos: number) : any /* io.vertx.sqlclient.data.Numeric */; | ||
/** | ||
* Get a Temporal value at <code>pos</code>. | ||
@@ -908,2 +923,7 @@ */ | ||
/** | ||
* Get an array of value at <code>pos</code>. | ||
*/ | ||
getNumericArray(pos: number) : any /* io.vertx.sqlclient.data.Numeric[] */; | ||
/** | ||
* Get an array of String value at <code>pos</code>. | ||
@@ -910,0 +930,0 @@ */ |
{ | ||
"name" : "@vertx/sql-client", | ||
"description" : "Generated Eclipse Vert.x bindings for 'vertx-sql-client'", | ||
"version" : "3.9.3", | ||
"version" : "3.9.4", | ||
"license" : "Apache-2.0", | ||
@@ -10,6 +10,6 @@ "public" : true, | ||
"artifactId" : "vertx-sql-client", | ||
"version" : "3.9.3" | ||
"version" : "3.9.4" | ||
}, | ||
"dependencies" : { | ||
"@vertx/core" : "3.9.3" | ||
"@vertx/core" : "3.9.4" | ||
}, | ||
@@ -16,0 +16,0 @@ "main" : "index.js", |
42641
1196
+ Added@vertx/core@3.9.4(transitive)
- Removed@vertx/core@3.9.3(transitive)
Updated@vertx/core@3.9.4