Dbclass


SUBMITTED BY: openeyes

DATE: April 23, 2016, 8:13 a.m.

FORMAT: Text only

SIZE: 462 Bytes

HITS: 52500

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data.SqlClient;
  6. namespace Factory_Management_System
  7. {
  8. class dbclass
  9. {
  10. public static string constring = "DATA Source=CODER-PC;Initial Catalog=factory_management_system;User Id=zerocore;Password=admin;";
  11. public static SqlConnection con = new SqlConnection(constring);
  12. public dbclass()
  13. {
  14. }
  15. }
  16. }

comments powered by Disqus