|
|
|
@ -658,7 +658,7 @@ export class FormJdbc extends BI.Widget {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private checkValueRange(value: string) { |
|
|
|
|
return Number(value) <= INT_MAX_VALUE && Number(value) >= INT_MIN_VALUE; |
|
|
|
|
return parseInt(value, 0) <= INT_MAX_VALUE && parseInt(value, 0) >= INT_MIN_VALUE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private getDrivers() { |
|
|
|
|