@atlashub/smartstack-cli 1.32.0 → 1.34.0

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/dist/index.js CHANGED
@@ -124884,7 +124884,7 @@ function parseConnectionString(connStr) {
124884
124884
  }
124885
124885
  function executeSqlCmd(server, database, query) {
124886
124886
  const sqlServer = server === "(local)" ? "." : server;
124887
- const cmd = `sqlcmd -S "${sqlServer}" -d "${database}" -E -I -Q "${query.replace(/"/g, '\\"')}" -h -1 -W`;
124887
+ const cmd = `sqlcmd -S "${sqlServer}" -d "${database}" -E -I -C -Q "${query.replace(/"/g, '\\"')}" -h -1 -W`;
124888
124888
  return (0, import_child_process8.execSync)(cmd, { encoding: "utf-8" }).trim();
124889
124889
  }
124890
124890
  function detectSmartStackApp() {