Skip to content

add mention of MariaDB to Readme.md #2116

New issue

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

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ using (var reader = connection.ExecuteReader("select * from Shapes"))
}
```

User Defined Variables in MySQL
User Defined Variables in MySQL/MariaDB
---------------------
In order to use Non-parameter SQL variables with MySql Connector, you have to add the following option to your connection string:

Expand All @@ -465,7 +465,7 @@ Dapper's simplicity means that many features that ORMs ship with are stripped ou

Will Dapper work with my DB provider?
---------------------
Dapper has no DB specific implementation details, it works across all .NET ADO providers including [SQLite](https://www.sqlite.org/), SQL CE, Firebird, Oracle, MySQL, PostgreSQL and SQL Server.
Dapper has no DB specific implementation details, it works across all .NET ADO providers including [SQLite](https://www.sqlite.org/), SQL CE, Firebird, Oracle, MariaDB, MySQL, PostgreSQL and SQL Server.

Do you have a comprehensive list of examples?
---------------------
Expand Down