@dbcube/core 1.0.46 → 1.0.49

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.cjs CHANGED
@@ -613,10 +613,11 @@ var Engine = class {
613
613
  setArguments() {
614
614
  let args = [];
615
615
  if (this.config.type == "sqlite") {
616
+ console.log(this.config.config.DATABASE);
616
617
  args = [
617
618
  "--id",
618
619
  "dbcube-" + this.name,
619
- "--database",
620
+ "--database-ref",
620
621
  this.name,
621
622
  "--database",
622
623
  this.config.config.DATABASE + ".db",
@@ -627,7 +628,7 @@ var Engine = class {
627
628
  args = [
628
629
  "--id",
629
630
  "dbcube-" + this.name,
630
- "--database",
631
+ "--database-ref",
631
632
  this.name,
632
633
  "--database",
633
634
  this.config.config.DATABASE,