23 packages tagged with “SqlConnection”
Fluent.Sql designed to simplify a work with SqlConnection, SqlTransaction, SqlCommand and SqlDataReader objects
Mysql, postgresql, sqlserver, Oracle and SQLite connection object extension methods.
AdoManager is a .NET project for managing SQL Connection Strings and Ado.NET executions. Read connection strings from setting file as normal or encrypted mode, automatically. Share connections in environs of all projects as static. You can use Dapper ORM in DataAccessObject. for more informations: https://github.com/Behzadkhosravifar/AdoManager
Shim over IDbConnection interface to allow access to Async methods, if they exist
Fácil acesso a bases de dados Sql Server.
Request/Response pattern for IDbConnection/IDbCommand
SQL Server connection dialog
Data Access Library that simplifies data access to a Microsoft SQL server. Wraps SqlConnection the SqlCommand into a series of objects and methods that provide more straightforward usage. GetObjects<T>()/GetObject<T>() provides functionality to fill an object via reflection in a lightweight manner.
Extend your IDbConnection with high-performance bulk operations Features: Bulk Insert, Bulk Delete, Bulk Update, Bulk Merge, and more! Support: SQL Server. All features its free.
MSSQL Connection Class
It is an abstraction of System.Data.SqlClient.SqlConnection
The SqlServerDB_dotNET Class Library is a high level wrapper around the SQLServer. The library is currently compiled at .Net 4.0 so it should work with any application running .Net 4.0 and above.
Ado.Net Connected ve Disconnected mimari için kolaylık sağlar. İçerisinde veri ekleme ve veri listeleme ile ilgili metotlar bulunur.
Wrapper for SqlConnection facilitating Fallback, RoundRobin, and Retries
# MyCrudPackage Purpose ----------- This package is useful to everyone who uses .net framework and try to push the model data to the sql database. Implementation Steps ----------------------- we have 3 methods in this package 1. DBTransaction - Applicable to send model as a parameter and do the CUD operations 2. GetDataSet = Applicable to receive the dataset with multiple or single table 3. GetDataTable - Applicable to receive the datatable Scenario 1: Assuming you want to do a transaction to create / update / delete a record Model (From your Application) ------ public class Employee { public string FirstName{get;set;} public string LastName{get;set;} public string MiddleName{get;set;} public int Age{get;set;} public bit Gender{get;set;} } you are forming this object in your creation screen (Employee.aspx.cs) Button_Click event -------------------- Employee employee=new Employee(); employee.FirstName=txtFirstName.Text; employee.LastName=txtLastName.Text; employee.MiddleName=txtMiddleName.Text; employee.Age=Convert.ToInt16(txtAge.Text); employee.Gender=Convert.ToBoolean(rbdGender.Value); here we call our MyCrudPackage ------------------------------- var result=MyCrudPackage.CRUD.DBTransactions<Employee>(employee,<Storedprocname>,<sqlconnectionstring>); Scenario 2: ----------- To receive data to a Dataset with parameters (multiple collection of select statement from stored proc / single) DataSet ds=new DataSet(); ds=MyCrudPackage.CRUD.DBTransactions<Employee>(employee,<Storedprocname>,<sqlconnectionstring>); Scenario 3: ----------- To receive data to a Dataset without parameters (multiple collection of select statement from stored proc / single) DataSet ds=new DataSet(); ds=MyCrudPackage.CRUD.DBTransactions(<Storedprocname>,<sqlconnectionstring>); Scenario 4: ----------- To receive data to a Datatable with parameters DataTable dt=new DataTable(); dt=MyCrudPackage.CRUD.DBTransactions<Employee>(employee,<Storedprocname>,<sqlconnectionstring>); Scenario 5: ----------- To receive data to a Datatable without parameters DataTable dt=new DataTable(); dt=MyCrudPackage.CRUD.DBTransactions(<Storedprocname>,<sqlconnectionstring>);
Package Description
Provides a fluent implementation of a SQL Server Repository.
Kangal is extension library for data operations. Like DataReader, SqlConnection or DataTable.
A lightweight .NET ORM and extension library for the type DbConnection that adds high-performance, type-safe helpers to reduce boilerplate code, boost productivity, and make working with SQL databases in C# more enjoyable.
A focused set of extension methods for Microsoft.Data.SqlClient.SqlConnection that reduce boilerplate code, boost productivity, and make working with SQL Server in C# more enjoyable.
The SqlServerDB_dotNET class library is a high-level wrapper around Microsoft SQL Server, designed to simplify database connections and query execution. This package targets modern .NET (net10.0) and is built on top of Microsoft.Data.SqlClient, making it suitable for cross-platform applications running on Windows, Linux, and macOS. The library provides a simple and consistent API for managing SQL connections, executing commands, and handling results in modern .NET applications.