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

Windows10UWPアプリからSQLサーバーデータベースに接続する方法

    Windows 10 Fall Creators Update(ビルド16299)により、UWPアプリは標準のNETクラス(System.Data.SqlClient)を介してSQLServerに直接アクセスできるようになりました。UWPで.NETStandard2.0のサポートが新たに追加されたおかげです。

    Northwind UWPデモアプリは次のとおりです:https://github.com/StefanWickDev/IgniteDemos

    このデモは2017年9月にMicrosoftIgniteで発表されました。これが、セッションの記録です(SQLデモの場合は23:00にスキップしてください):https://myignite.microsoft.com/sessions/53541

    Northwindデータベースから製品を取得するためのコードは次のとおりです(デモのDataHelper.csを参照)。 .NET Standard 2.0のおかげで、WinformsまたはWPFアプリ用に作成するコードとまったく同じであることに注意してください。

    public static ProductList GetProducts(string connectionString)
    {
        const string GetProductsQuery = "select ProductID, ProductName, QuantityPerUnit," +
            " UnitPrice, UnitsInStock, Products.CategoryID " +
            " from Products inner join Categories on Products.CategoryID = Categories.CategoryID " +
            " where Discontinued = 0";
    
        var products = new ProductList();
        try
        {
            using (SqlConnection conn = new SqlConnection(connectionString))
            {
                conn.Open();
                if (conn.State == System.Data.ConnectionState.Open)
                {
                    using (SqlCommand cmd = conn.CreateCommand())
                    {
                        cmd.CommandText = GetProductsQuery;
                        using (SqlDataReader reader = cmd.ExecuteReader())
                        {
                            while (reader.Read())
                            {
                                var product = new Product();
                                product.ProductID = reader.GetInt32(0);
                                product.ProductName = reader.GetString(1);
                                product.QuantityPerUnit = reader.GetString(2);
                                product.UnitPrice = reader.GetDecimal(3);
                                product.UnitsInStock = reader.GetInt16(4);
                                product.CategoryId = reader.GetInt32(5);
                                products.Add(product);
                            }
                        }
                    }
                }
            }
            return products;
        }
        catch (Exception eSql)
        {
            Debug.WriteLine("Exception: " + eSql.Message);
        }
        return null;
    }
    

    Fall Creators Updateより前のバージョンをサポートする必要がある場合は、デスクトップブリッジを介してUWPアプリパッケージからSqlClientAPIを呼び出す方法もあります。このサンプルはここに公開されています:https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/SQLServer



    1. mysqlは、数字がコンマ区切りのリストにあるかどうかを確認します

    2. SQL Server Management Studio(SSMS)でクエリ結果を.csvまたはタブ区切りファイルにエクスポートする方法-SQL Server/TSQLチュートリアルパート23

    3. PostgreSQLでカテゴリ別に最大日付グループのIDを選択するにはどうすればよいですか?

    4. PHP警告:mysqli_connect():(HY000 / 2002):接続が拒否されました