SqlServerDB_dotNET 1.1.2
See the version list below for details.
dotnet add package SqlServerDB_dotNET --version 1.1.2
NuGet\Install-Package SqlServerDB_dotNET -Version 1.1.2
<PackageReference Include="SqlServerDB_dotNET" Version="1.1.2" />
paket add SqlServerDB_dotNET --version 1.1.2
#r "nuget: SqlServerDB_dotNET, 1.1.2"
// Install SqlServerDB_dotNET as a Cake Addin #addin nuget:?package=SqlServerDB_dotNET&version=1.1.2 // Install SqlServerDB_dotNET as a Cake Tool #tool nuget:?package=SqlServerDB_dotNET&version=1.1.2
Example: using SqlServerDB;
string server = @"INSTANCE\SQLEXPRESS"; string database = "DEMODB"; string username = "sa"; string password = "";
string connectionString = @"Data Source="+ server + ";Initial Catalog="+ database + "; Trusted_Connection=True;User ID="+ username + ";Password="+ password + ""; DBConnection db_conn = new DBConnection(connectionString);
Console.WriteLine("isConnected: " + db_conn.isConnected()); if (db_conn == null || !db_conn.isConnected()) { Console.WriteLine("Connessione non valida."); return; }
string sql = "SELECT ID, Message FROM Logs ORDER BY IDLic;"; DataTable dtLogs = db_conn.SelectTable(sql);
if (dtLogs == null || dtLogs.Rows.Count == 0) return;
// Loop with the foreach keyword. foreach (DataRow dr in dtLogs.Rows) { Console.WriteLine("Message: " + dr["Message"].ToString().Trim()); }
using (DBConnection db_conn = new DBConnection(connectionString)) { string sNominativo = "Micky"; string sql = "INSERT INTO TabLav (Nominativo) " + "values('" + sNominativo + "');";
if (!db_conn.sql_query(sql))
{
Console.WriteLine("Error during insert: " + db_conn.sql_error()[0]);
Console.WriteLine(sql);
}
int insertedID = db_conn.GetLastInsertedRowID();
Console.WriteLine("GetLastInsertedRowID: " + insertedID);
int recordsAffected = db_conn.GetNumRecordsAffected();
Console.WriteLine("GetNumRecordsAffected: " + recordsAffected);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
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 |
---|---|---|
2.0.4 | 721 | 3/6/2023 |
2.0.3 | 639 | 3/6/2023 |
2.0.2 | 853 | 2/9/2021 |
2.0.1 | 774 | 2/9/2021 |
2.0.0 | 777 | 2/7/2021 |
1.3.4 | 882 | 12/3/2020 |
1.3.3 | 793 | 11/2/2020 |
1.3.2 | 937 | 10/23/2020 |
1.3.1 | 936 | 10/13/2020 |
1.3.0 | 896 | 10/12/2020 |
1.2.2 | 965 | 10/1/2020 |
1.2.1 | 893 | 9/27/2020 |
1.2.0 | 912 | 9/20/2020 |
1.1.3 | 879 | 8/18/2020 |
1.1.2 | 863 | 8/17/2020 |
1.1.1 | 955 | 8/12/2020 |
1.1.0 | 877 | 8/12/2020 |
1.0.0 | 1,147 | 12/8/2018 |
Extensions on the SqlServerDB .NetFramework.