MySqlOptimizer 1.3.0
dotnet add package MySqlOptimizer --version 1.3.0
NuGet\Install-Package MySqlOptimizer -Version 1.3.0
<PackageReference Include="MySqlOptimizer" Version="1.3.0" />
<PackageVersion Include="MySqlOptimizer" Version="1.3.0" />
<PackageReference Include="MySqlOptimizer" />
paket add MySqlOptimizer --version 1.3.0
#r "nuget: MySqlOptimizer, 1.3.0"
#addin nuget:?package=MySqlOptimizer&version=1.3.0
#tool nuget:?package=MySqlOptimizer&version=1.3.0
MySqlOptimizer
Version 1.3
A simple and efficient C# library for performing common MySQL database operations. This library provides methods for executing queries, stored procedures, and managing database connections.
Features
- Execute SQL Queries and Commands: Run SQL commands directly against the database.
- Execute Stored Procedures with Parameters: Call stored procedures and pass parameters easily.
- Execute Scalar Queries: Retrieve single values from the database.
- Execute Data Readers with Parameters: Read data using a MySqlDataReader with parameters.
- Check Database Connection Status: Verify if the database connection is successful.
Installation
You can install the package via NuGet Package Manager:
Install-Package MySqlOptimizer
Or using the .NET CLI:
dotnet add package MySqlOptimizer
Usage
- Check Database Connection
using MySqlOptimizer;
var mysql = new MysqlShort();
bool isConnected = mysql.CheckConnection("YourConnectionString");
- Execute a Scalar Query
using MySqlOptimizer;
var mysql = new MysqlShort();
object result = mysql.ExecuteScalar("YourConnectionString", "SELECT COUNT(*) FROM YourTable");
- Execute a Stored Procedure
using MySqlOptimizer; using System.Collections.Generic;
var mysql = new MysqlShort();
var parameters = new Dictionary<string, object> { { "@param1", value1 }, { "@param2", value2 } };
bool success = mysql.ExecuteStoredProcedure("YourConnectionString", "YourStoredProcedureName", parameters);
- Execute a Reader with Parameters
using MySqlOptimizer; using MySql.Data.MySqlClient;
var mysql = new MysqlShort();
var parameters = new MySqlParameter[] { new MySqlParameter("@param1", value1), new MySqlParameter("@param2", value2) };
using (MySqlDataReader reader = mysql.ExecuteReaderWithParameters("YourConnectionString", "SELECT * FROM YourTable WHERE Column1 = @param1", parameters)) { while (reader.Read()) { // Process each row } }
Exception Handling
The library throws exceptions for various error conditions. You can catch these exceptions to handle errors gracefully:
try { // Your database operation } catch (Exception ex) { Console.WriteLine(ex.Message); }
Contributing
Contributions are welcome! Please feel free to submit a pull request or create an issue if you find a bug or have a feature request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- MySQL Connector/NET
- C# and .NET community
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net6.0
- MySql.Data (>= 8.0.11)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.