Connection
Connection
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace WindowsFormsApplication86
{
public partial class Form1 : Form
{
SqlConnection con = new SqlConnection();
public Form1()
{
con.ConnectionString = "data source=.; initial catalog=jahan;
integrated security=true";
InitializeComponent();
}