Adds minutes with dates
string Estimated_LoadDate = "26-2-2020 00:00:00";
DateTime dd = DateTime.Now;
dd = Convert.ToDateTime(Estimated_LoadDate).AddMinutes(TotalMin);
Estimated_LoadDate = dd.ToString...
Wednesday, February 26, 2020
Tuesday, December 24, 2019
Nilkamal Sarker
December 24, 2019
0
How to database connection to C# to Oracle public OracleConnection GetConnection_Oracle()
{
string connStr = "Data Source=(DESCRIPTION=(ADDRESS_LIST="
+ "(ADDRESS=(PROTOCOL=TCP)(HOST=Server IP Address)(PORT=Server Port Number)))"
+ "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=etds)(INSTANCE_NAME=etds)));"
...
Nilkamal Sarker
December 24, 2019
0
Database Connection c# to mssql
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DIGISHOP.App_Data
{
public class clsDataProcess
{
public SqlConnection getConnection()
{
//string connStr = @"data...
Saturday, July 27, 2019
About c#
Nilkamal Sarker
July 27, 2019
0
c# is a very powerful language. It is very easy and comfortable for beginner programmer. Whether you are an experienced programmer or not,But for everyone who wishes to learn the C# programming language. C# is a hybrid of C and C++, it is a Microsoft programming language developed to compete with Sun's Java language. C# is...
Page 1 of 11