@miatechnet/node-odbc 2.4.12 → 2.4.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@miatechnet/node-odbc",
3
3
  "description": "unixodbc bindings for node - Fork with multi-result set support for stored procedures",
4
- "version": "2.4.12",
4
+ "version": "2.4.13",
5
5
  "homepage": "https://github.com/ppimentela/node-odbc/",
6
6
  "main": "lib/odbc.js",
7
7
  "types": "lib/odbc.d.ts",
@@ -1906,13 +1906,13 @@ class CallProcedureAsyncWorker : public ODBCAsyncWorker {
1906
1906
  }
1907
1907
 
1908
1908
  // Guardar el result set actual en allResultSets
1909
- if (data->storedRows.size() > 0) {
1909
+ //if (data->storedRows.size() > 0) {
1910
1910
  std::vector<ColumnData*> currentResultSet;
1911
1911
  for (size_t i = 0; i < data->storedRows.size(); i++) {
1912
1912
  currentResultSet.push_back(data->storedRows[i]);
1913
1913
  }
1914
1914
  data->allResultSets.push_back(currentResultSet);
1915
- }
1915
+ //}
1916
1916
 
1917
1917
  // Limpiar storedRows para el próximo result set (sin liberar memoria)
1918
1918
  data->storedRows.clear();