From e0479ba16d72498f83a44b9f749ee20ed9121fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sil=C3=A9n?= Date: Tue, 8 Oct 2024 15:23:18 +0300 Subject: [PATCH] add mention of MariaDB to Readme.md (#2116) --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index c22aee4b..d7bc4afa 100644 --- a/Readme.md +++ b/Readme.md @@ -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: @@ -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? ---------------------