MySqlOptimizer 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MySqlOptimizer --version 1.1.0
                    
NuGet\Install-Package MySqlOptimizer -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MySqlOptimizer" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MySqlOptimizer" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="MySqlOptimizer" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MySqlOptimizer --version 1.1.0
                    
#r "nuget: MySqlOptimizer, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=MySqlOptimizer&version=1.1.0
                    
Install MySqlOptimizer as a Cake Addin
#tool nuget:?package=MySqlOptimizer&version=1.1.0
                    
Install MySqlOptimizer as a Cake Tool

MySqlOptimizer

MySqlOptimizer is a C# library designed to simplify database operations with MySQL. It provides methods for executing common SQL commands such as SELECT, INSERT, UPDATE, and DELETE using both raw SQL queries and parameterized queries to prevent SQL injection attacks.

Features:

  • Execute Select: Retrieve data from the database and fill it into a DataTable.
  • Execute Insert: Insert new records into the database using raw SQL or parameterized queries.
  • Execute Update: Update existing records in the database using raw SQL or parameterized queries.
  • Execute Delete: Remove records from the database using raw SQL or parameterized queries.

Installation: To use the MySqlOptimizer library, ensure you have the following prerequisites:

  • .NET Framework or .NET Core
  • MySql.Data NuGet package

You can install the required NuGet packages using the following commands: Install-Package MySql.Data

Usage: Creating an Instance: To use the library, create an instance of the MysqlShort class.

using MySqlOptimizer;

// Create an instance of the MysqlShort class MysqlShort mysqlShort = new MysqlShort();

Example of Using the Methods:

Execute Select: string connectionString = "your_connection_string_here"; string selectQuery = "SELECT * FROM your_table_name";

DataTable result = mysqlShort.ExecuteSelect(connectionString, selectQuery);

Execute Insert (Raw SQL): string insertQuery = "INSERT INTO your_table_name (column1, column2) VALUES ('value1', 'value2')"; int rowsInserted = mysqlShort.ExecuteInsert(connectionString, insertQuery);

Execute Insert (Parameterized): string insertQuery = "INSERT INTO your_table_name (column1, column2) VALUES (@value1, @value2)"; MySqlParameter[] parameters = new MySqlParameter[] { new MySqlParameter("@value1", "value1"), new MySqlParameter("@value2", "value2") };

int rowsInserted = mysqlShort.ExecuteInsert(connectionString, insertQuery, parameters);

Execute Update (Raw SQL): string updateQuery = "UPDATE your_table_name SET column1 = 'new_value' WHERE id = 1"; int rowsUpdated = mysqlShort.ExecuteUpdate(connectionString, updateQuery);

Execute Update (Parameterized): string updateQuery = "UPDATE your_table_name SET column1 = @newValue WHERE id = @id"; MySqlParameter[] updateParameters = new MySqlParameter[] { new MySqlParameter("@newValue", "new_value"), new MySqlParameter("@id", 1) };

int rowsUpdated = mysqlShort.ExecuteUpdate(connectionString, updateQuery, updateParameters);

Execute Delete (Raw SQL): string deleteQuery = "DELETE FROM your_table_name WHERE id = 1"; int rowsDeleted = mysqlShort.ExecuteDelete(connectionString, deleteQuery);

Execute Delete (Parameterized): string deleteQuery = "DELETE FROM your_table_name WHERE id = @id"; MySqlParameter[] deleteParameters = new MySqlParameter[] { new MySqlParameter("@id", 1) };

int rowsDeleted = mysqlShort.ExecuteDelete(connectionString, deleteQuery, deleteParameters);

Error Handling: Each method includes basic error handling that throws an exception with a descriptive message if an error occurs during the execution of the SQL command. You should implement your own error handling as needed when using these methods.

License: This project is licensed under the MIT License - see the LICENSE file for details.

Contributing: Contributions are welcome! Please feel free to submit a pull request or open an issue for any enhancements or bug fixes.

Contact: For any questions or suggestions, please contact [Khujrat Sjhaikh] (khujratshaikh1284@gmail.com).

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 109 11/20/2024
1.2.0 99 11/20/2024
1.1.0 98 11/14/2024
1.0.0 103 11/14/2024