Connection between form c # and SQL Server Remote

  • Thread starter Thread starter Wanderson Junior
  • Start date Start date
W

Wanderson Junior

Guest
EN-US


Good afternoon, I'm starting with C # and at first I'm creating a login system, pulling into an add / edit form in the sql server, I've done all the designer and part of the query by text box and on the button, returning error message or success. However, when trying to connect to sql, I get the messagebox I programmed to appear if I did not connect to the db. I'm using Visual Studio 2019 to do the program, and I'm trying to connect to a cloud, sql server 2012 and I'm using this command line in the Connection class

PT-BR

Boa tarde, Estou começando com C# e de início estou criando um sistema de login, puxando para um form de edição / adição de contas no sql server, já fiz todo o designer e a parte da query por text box e na button, retornando mensagem de erro ou sucesso. Porém, ao tentar conectar ao sql, recebo a messagebox que programei para aparecer caso não conectasse na db. Estou utilizando o Visual Studio 2019 para fazer o programa, e estou tentando conectar em um cloud, sql server 2012 e estou usando está linha de comando na classe Conexao



public class Conexao
{
SqlConnection con = new SqlConnection();

//Construtor

public Conexao()
{
con.ConnectionString = @"Data Source = IP,1433\NameComputer\MSSQLSERVER; Network Library = DBMSSOCN; Initial Catalog = DBname; User ID = sa; Password = passwordsql";


}
//Metodo Conectar
public SqlConnection conectar()
{

if (con.State == System.Data.ConnectionState.Closed)
{

con.Open();
}

return con;

}

Continue reading...
 
Back
Top