We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jaguar_sqljocky 2.4.1 MySqlManager构造函数未初始化成员变量timeZone
MySqlManager( this.databaseName, { this.host: 'localhost', this.port: 5432, this.username: 'root', this.password, this.useSsl: false, this.timeoutInSeconds: 30, });
会产生异常:
Error: Final field 'timeZone' is not initialized. Try to initialize the field in the declaration or in every constructor.
修改后正常运行:
MySqlManager( this.databaseName, { this.host: 'localhost', this.port: 5432, this.username: 'root', this.password, this.useSsl: false, this.timeoutInSeconds: 30, this.timeZone });
The text was updated successfully, but these errors were encountered:
I will fix it.
PRs are welcome.
Sorry, something went wrong.
tejainece
No branches or pull requests
jaguar_sqljocky 2.4.1
MySqlManager构造函数未初始化成员变量timeZone
会产生异常:
修改后正常运行:
The text was updated successfully, but these errors were encountered: