skip to Main Content

Flutter app Azure MySQL server connection timeout error

I am developing a Flutter application in android studio. In a separate 'DbHelper.dart' file, the following code connects to Azure MySQL server. DbHelper.dart: import 'package:mysql1/mysql1.dart'; void main() async { final connSettings = ConnectionSettings( host: 'hostname.mysql.database.azure.com', port: 3306, user: 'user', password:…

VIEW QUESTION
Back To Top
Search