UWP

c#

UWPにはUWPの流儀があるのか。WPFとはまた少し別なのか。
まだ以下ではアクセスできていなんだ・・・!糞っ!!
使っていたので.NET対応のドライバだ。

参考にしてコマンドラインでインストールしたが、nugetでの再度インストールが必要だった?
追加から消えたので行ったのだけど・・・。手順がおかしかったか?

You are in luck! If your app targets the Windows 10 Fall Creators Update (version 16299),



unsupported references),
but there are alternatives. The ones that are the most promising are those that support .NET Standard.
For example the MySqlConnector project offers a very similar interface to the official connector.
It is still in beta, but is regularly updated and actively developed.
You can install it into your project very easily using NuGet.
Open the NuGet package console (Tools -> NuGet Package Manager -> Package Manager Console) and enter the following:

Install-Package MySqlConnector -Version 0.34.0
Now you can use MySqlConnection, MySqlCommand, etc. as usual.

using MySql.Data.MySqlClient;

string connStr = "server=localhost;user=root;database=uwpconnect;port=3306;password=";
StringBuilder sb = new StringBuilder();
MySqlConnection conn = new MySqlConnection(connStr);
conn.Open();
string sql = "SELECT Name FROM world";
MySqlCommand cmd = new MySqlCommand(sql, conn);
MySqlDataReader rdr = cmd.ExecuteReader();

while (rdr.Read())
{
sb.AppendLine(rdr[0].ToString());
}
rdr.Close();
conn.Close();

デザイン、まで考え始めると業務用ではないもっと広がりのある企画が充実しそうだな!

No tags for this post.
タイトルとURLをコピーしました