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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 720 additions and 664 deletions

File diff suppressed because it is too large Load Diff

View File

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