You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: chat2db-server/chat2db-plugins/chat2db-clickhouse/src/main/java/ai/chat2db/plugin/clickhouse/ClickHouseDBManage.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ private void exportTablesOrViewsOrDictionaries(Connection connection,String data
Copy file name to clipboardexpand all lines: chat2db-server/chat2db-plugins/chat2db-oracle/src/main/java/ai/chat2db/plugin/oracle/OracleDBManage.java
+5-39
Original file line number
Diff line number
Diff line change
@@ -30,29 +30,25 @@ public class OracleDBManage extends DefaultDBManage implements DBManage {
30
30
privatestaticStringTRIGGER_DDL_SQL = "SELECT DBMS_METADATA.GET_DDL('TRIGGER', trigger_name) AS ddl FROM all_triggers WHERE owner = '%s' AND trigger_name = '%s'";
31
31
privatestaticStringFUNCTION_DDL_SQL = "SELECT DBMS_METADATA.GET_DDL('FUNCTION', object_name) as ddl FROM all_procedures WHERE owner = '%s' AND object_name = '%s'";
Copy file name to clipboardexpand all lines: chat2db-server/chat2db-plugins/chat2db-postgresql/src/main/java/ai/chat2db/plugin/postgresql/PostgreSQLDBManage.java
0 commit comments