mysql1_dart
mysql1_dart copied to clipboard
MySQL driver for Dart
```dart class ProductProvider { FutureOr findAll() async { MySqlConnection? conn; try { conn = await DatabaseConnect().openConnection(); final Results result = await conn.query('select * from Produto'); return result.map((ResultRow product) => ProductModel(...
Hello, I noticed this is licensed under the GPL license, which means it can't be used in any other product than GPL itself, it this intentional? Shouldn't libraries use LGPL...
How do run the tests? According to the [docs](https://flutter.dev/docs/testing) it should be `flutter test`. Are the tests in the *test* folder manual tests?
In debug mode it connects normally, but in release mode it does not connect.
If is there any way to get this working with flutter web? Or any plans to support this in the future?
Into src/single_connection.dart : class TransactionContext (line 230): We can read Future query(String sql, [List? values]) => _conn.query(sql, values); Future queryMulti(String sql, Iterable> values) =>_conn.queryMulti(sql, values); but I think we must...
Hi. I am using this package for connecting my server side database to local database. But i'm a bit worried about sqlinjection and sqldump attacks. Is it possible to decompile...
connection reset by peer socket write error 104
I want to connect to a database from my hosting server in namecheap. How can I do that?