Update common.js Hebrew language update (#4241)

* Update common.js

Hebrew language update

* linting

---------

Co-authored-by: timothycarambat <rambat1010@gmail.com>
This commit is contained in:
start-life
2025-08-05 19:55:08 +03:00
committed by GitHub
parent fe26312082
commit 20468d7053
2 changed files with 720 additions and 664 deletions

View File

@@ -96,6 +96,7 @@ class MSSQLConnector {
getTablesSql() {
return `SELECT name FROM sysobjects WHERE xtype='U';`;
}
getTableSchemaSql(table_name) {
return `SELECT COLUMN_NAME,COLUMN_DEFAULT,IS_NULLABLE,DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='${table_name}'`;
}