Guest User

Untitled

a guest
Nov 15th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. public class CD_Conexion
  2. {
  3. private MySqlConnection Conexion = new MySqlConnection
  4.  
  5. ("Server = ligabaltikeishon.com; Database=ligabalt_joom450; User=ligabalt_joom450; pwd=a(!Sp3Yq; SslMode=none;");
  6. public MySqlConnection Abrirconexion()
  7. {
  8. if (Conexion.State == ConnectionState.Closed)
  9. {
  10. Conexion.Open();
  11. }
  12. return Conexion;
  13. }
  14. public MySqlConnection CerrarConexion()
  15. {
  16. if (Conexion.State == ConnectionState.Open)
  17. {
  18.  
  19.  
  20.  
  21.  
  22. Conexion.Close();
  23.  
  24. }
  25. return Conexion;
  26. }**
Add Comment
Please, Sign In to add comment