Created
March 17, 2015 13:23
-
-
Save YhorbyMatias/0f97318ad3cb57de0d2e to your computer and use it in GitHub Desktop.
Conexion C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Servidor | |
{ | |
private SqlConnection myConnection; | |
string cadenaConexion; | |
public void Conectar | |
{ | |
cadenaConexion = "cadena conexion" | |
myConnection = new SqlConnection(cadenaConexion) | |
myConnection.Open() | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment