database code
database code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestConnection.BLL
{
internal class userbll
{
public int Id { get; set; }
public string First_name { get; set; }
public string Last_name { get; set; }
public string Email { get; set; }
public string Username { get; set; }
public string Password{ get; set; }
public string Address { get; set; }
public string Contact_no { get; set; }
public string Gender { get; set; }
public string User_type { get; set; }
public DateTime Added_date { get; set; }
public int Added_by { get; set; }
}
}
DAL CODE
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using TestConnection.BLL;
namespace TestConnection.DAL
{
internal class userdal
{
static string myconnstring =
ConfigurationManager.ConnectionStrings["connstring"].ConnectionString;
#region select Data from Database
public DataTable select()
{
SqlConnection conn = new SqlConnection(myconnstring);
DataTable dt = new DataTable();
try
{
string sql = "SELECT * FROM tbl_user";
SqlCommand cmd = new SqlCommand(sql, conn);
SqlDataAdapter adapter = new SqlDataAdapter(cmd);
conn.Open();
adapter.Fill(dt);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
conn.Close();
}
return dt;
}
#endregion
conn.Open();
int rows = cmd.ExecuteNonQuery();
if(rows>0)
{
isSuccess = true;
}
else
{
isSuccess = false;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
conn.Close();
}
return isSuccess;
}
#endregion
conn.Open();
int rows = cmd.ExecuteNonQuery();
if (rows > 0)
{
isSuccess = true;
}
else
{
isSuccess = false;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
conn.Close();
}
return isSuccess;
}
#endregion
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
conn.Close();
}
return u;
}
#endregion
}
}
APP.CONFIG
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<connectionStrings>
<add name="connstring" connectionString="Data Source=ALIHA\SQLEXPRESS;Initial
Catalog=Mart;Integrated Security=True;"/>
</connectionStrings>
</configuration>