@xcr1234/dbhub-fork 1.4.0 → 1.5.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/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  `npm i @xcr1234/dbhub-fork`
4
4
 
5
- Remove better-sqlite3
5
+ 1. Remove better-sqlite3
6
6
 
7
- Add oracle support, example:
7
+ 2.Add oracle support, for example:
8
8
 
9
9
  ```toml
10
10
  [[sources]]
@@ -12,6 +12,7 @@ id = "oracle_db"
12
12
  dsn = "oracle://SYSTEM:MyStrongPassword123@localhost:1521/FREEPDB1"
13
13
  ```
14
14
 
15
+ 3.implement the search_objects UI.
15
16
 
16
17
  > > [!NOTE]
17
18
  > Brought to you by [Bytebase](https://www.bytebase.com/), open-source database DevSecOps platform.
package/dist/index.js CHANGED
@@ -1577,7 +1577,7 @@ var connectorModules = [
1577
1577
  { load: () => import("./sqlite-PAG2E22N.js"), name: "SQLite", driver: "better-sqlite3" },
1578
1578
  { load: () => import("./mysql-HXACTOCX.js"), name: "MySQL", driver: "mysql2" },
1579
1579
  { load: () => import("./mariadb-LBLZFLEX.js"), name: "MariaDB", driver: "mariadb" },
1580
- { load: () => import("./oracle-TD3RWFFI.js"), name: "Oracle", driver: "oracle" }
1580
+ { load: () => import("./oracle-POFDPF45.js"), name: "Oracle", driver: "oracle" }
1581
1581
  ];
1582
1582
  loadConnectors(connectorModules).then(() => main()).catch((error) => {
1583
1583
  console.error("Fatal error:", error);
@@ -106,7 +106,6 @@ var OracleConnector = class _OracleConnector {
106
106
  const result = await conn.execute(`
107
107
  SELECT USERNAME
108
108
  FROM ALL_USERS
109
- WHERE ORACLE_MAINTAINED = 'N'
110
109
  ORDER BY USERNAME
111
110
  `);
112
111
  return result.rows.map((row) => row.USERNAME);