You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
using System;
|
|
using Microsoft.Data.SqlClient;
|
|
using System.Text;
|
|
|
|
namespace sqltest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder();
|
|
builder.DataSource = "<your_server>.database.windows.net";
|
|
builder.UserID = "<your_username>";
|
|
builder.Password = "<your_password>";
|
|
builder.InitialCatalog = "<your_database>";
|
|
|
|
using (SqlConnection connection = new SqlConnection(builder.ConnectionString))
|
|
{
|
|
Console.WriteLine("\nQuery data example:");
|
|
Console.WriteLine("=========================================\n");
|
|
|
|
String sql = "SELECT name, collation_name FROM sys.databases";
|
|
|
|
using (SqlCommand command = new SqlCommand(sql, connection))
|
|
{
|
|
connection.Open();
|
|
using (SqlDataReader reader = command.ExecuteReader())
|
|
{
|
|
while (reader.Read())
|
|
{
|
|
Console.WriteLine("{0} {1}", reader.GetString(0), reader.GetString(1));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (SqlException e)
|
|
{
|
|
Console.WriteLine(e.ToString());
|
|
}
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
} |