new(core.gbapp): LLM alerts for data.

This commit is contained in:
me@rodrigorodriguez.com 2024-10-17 10:35:48 -03:00
parent efeb75410a
commit 06ae13ba4f

View file

@ -212,13 +212,15 @@ export class GBUtil {
public static async listTables(dialect: any, seq: any) { public static async listTables(dialect: any, seq: any) {
let tables; let tables;
if (dialect === 'mssql') { if (dialect === 'mssql') {
tables = await seq.getQueryInterface().showAllTables({ schema: 'dbo' }); // Extracting table name from the object returned by MSSQL
tables = await seq.getQueryInterface().showAllTables({ schema: 'dbo' });
tables = tables.map((table: any) => table.tableName); // Extracting the table name
} else { } else {
tables = await seq.getQueryInterface().showAllTables(); tables = await seq.getQueryInterface().showAllTables();
} }
return tables; return tables;
} }
// Check if is a tree or flat object. // Check if is a tree or flat object.