mysql1_dart icon indicating copy to clipboard operation
mysql1_dart copied to clipboard

MySQL driver for Dart

Results 75 mysql1_dart issues
Sort by recently updated
recently updated
newest added

var res = await conn.query( "UPDATE levelDetails SET ?=? WHERE userid=?", [Level, percentage, userId]); Exception has occurred. MySqlException (Error 1064 (42000): You have an error in your SQL syntax; check...

Sometimes it's easier to just connect with a connection string. Heroku, for example, adds it to the environmental variables as soon as a database is installed. It's formatted as ```...

help wanted

When i use 0.17.1 client connect to the mysql 5.5.10 and exec query sql, there is a exception: Error 2027 (HY000): MySQLToType(15,0) failed: unsupported type: 15 But it's perfect connect...

there is the possibility to implement a mappedResultsQuery method just like in the postgres package to return rows as maps containing table and column names: https://pub.dev/packages/postgres ```dart List results =...

help wanted

I set SSL to false, the connection works and returns but it presents this error that ends up entering my try.

No clue what to do... lib seems very unreliable. I'm running a `INSERT IGNORE INTO product () VALUES () ` for 8000 records... it fails using connection::query(), works fine in...

help wanted

I noticed this library outputs too much logs with package:logging on FINE level with loggers named "BufferedSocket" and "MySqlConnection". Most log content is about bytes transfered through TCP connection with...

Am using workbench 8.0 but the packages seems not to capture any form of error , during the connectionSettings parameters i wrongly typed the db_name but it was still showing...

MySQL1 not closing connection in a Dart console application running on Windows 10, in debug mode. Find an example of the code structure below: ``` final conn = await MySqlConnection.connect(_settings);...

Hello, I am encountering an unexpected behavior when trying to query my MySQL database using the mysql1 Dart package. When I execute a query to show all tables in the...