Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. class Koneksi
  2. {
  3. public string mengambilKoneksi()
  4. {
  5. return "Server =REZZA\\SQLEXPRESS; Database = dbRs; User = rezza; Password = 1;";
  6. }
  7.  
  8. public bool ServerTerkoneksi()
  9. {
  10. bool connect = false;
  11. using ( SqlConnection conn = new SqlConnection(mengambilKoneksi()))
  12. {
  13. conn.Open();
  14. connect = true;
  15. conn.Close();
  16. }
  17. return connect;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement