Guest User

Untitled

a guest
Jul 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3. using MySql.Data.MySqlClient;
  4.  
  5. namespace BlazeGames.Pages
  6. {
  7. public class TestPage
  8. {
  9. MySqlConnection SqlConnection;
  10.  
  11. public void Initalize(MySqlConnection SQLConn)
  12. {
  13. this.SqlConnection = SQLConn;
  14. }
  15.  
  16. public object ReturnHTML()
  17. {
  18. if(SqlConnection.Ping())
  19. return ""SQL Ping Complete!"";
  20. else
  21. return ""SQL Ping Failed!"";
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment