sql >> データベース >  >> RDS >> Sqlserver

ASP.NET で SQL Server に接続する

    SqlCommand クラスのオブジェクトも作成し、コマンド文字列をそのコンストラクターに渡す必要があると思います。これを試してみてください"

    SqlConnection conn = new SqlConnection("Data Source=serverName;"
               + "Initial Catalog=databaseName;"
               + "Persist Security Info=True;"
               + "User ID=userName;Password=password");
    
    conn.Open();
    
    // create a SqlCommand object for this connection
    SqlCommand command = conn.CreateCommand();
    command.CommandText = "Select * from tableName";
    command.CommandType = CommandType.Text;
    
    // execute the command that returns a SqlDataReader
    SqlDataReader reader = command.ExecuteReader();
    
    // display the results
    while (reader.Read()) {
        //whatever you want to do.
    }
    
    // close the connection
    reader.Close();
    conn.Close();
    


    1. xpathの特定の条件を使用して特定のイベントを取得するOracleSQLクエリ?

    2. デフォルトのタイムスタンプをnow()+ n日に設定するにはどうすればよいですか?

    3. Postgres文字列の前のEは何ですか?

    4. MariaDBでのELT()のしくみ