Mirro Mutth
Mirro Mutth
It resolves #164 . Check list: - [x] Rename `dev.miku.r2dbc.mysql.Parameter` into `MySqlParameter` to avoid user confusion and naming conflicts - [x] Add `io.r2dbc.spi.Parameter` support in `DefaultCodecs`, just like `r2dbc-postgresql` -...
The MariaDB supports `INSERT INTO ... RETURNING ...`, considers to check server informations to provider it.
From past issues, lots of people are using MariaDB. Therefore, should consider integrate it in test environments.
The Windows Native Authentication is a rare authentication type in login phase. Note: - The name that's sent by server is `authentication_windows` - The name that should be sent by...
Motivation: Support for multiple hosts configuration. Resolves #89 It also resolves #255 because if the user uses multiple hosts we have to resolve the hostname and port ourselves Modification: -...
**Is your feature request related to a problem? Please describe.** For now, query is parsed by `Query.parse`. It can locate parameter indexes, map parameter names, and reformat prepared statements. But...
If `Capability.MARIADB_CLIENT_EXTENDED_TYPE_INFO` is set, the [Column Definition Packet](https://mariadb.com/kb/en/result-set-packets/#column-definition-packet) will contain an [extend type info](https://mariadb.com/kb/en/result-set-packets/#extended-type-info) MariaDB returns `JSON` data as `VARCHAR` (`MYSQL_TYPE_STRING`), so reading the extend type info is useful to...
In the Ok packet of MariaDB, the session state information may contain `redirect_url` and the driver can keep the old connection, or redirect to the new URL. > Supporting redirection...
Resolve #2735 Also may help to resolve issue in #166 Allows users enable `geometry` feature to use type `geo_types::Geometry` for `GEOMETRY` fields in MySQL. Use `ColumnType::Blob` due to MySQL does...