各製品の資料を入手。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Oracle Service Cloud 用の CData ADO.NET プロバイダーはサードパーティーコントロールで使うことのできる通常のADO.NET データベースアクセスコンポーネントを実装しています。データバインドするための通常のADO.NET プロセスに従うことで、UI コントロールから実データへの双方向アクセスを可能にします。 この記事では、CData を使ってDevExpress Windows Forms とウェブコントロールにデータバインドする方法を説明します。ここでは、最新のデータを表示するチャートにデータバインドします。
Oracle Service Cloud への認証には、以下を設定する必要があります。
下のコードでは、Oracle Service Cloud でDevExpress のチャートに追加する方法を説明します。OracleServiceCloudDataAdapter はチャートコントロールのSeries プロパティにバインドします。コントロールのDiagram プロパティはx 軸とy 軸をカラム名として定義します。
using (OracleServiceCloudConnection connection = new OracleServiceCloudConnection(
"Url=https://abc.rightnowdemo.com;User=user;Password=password;")) {
OracleServiceCloudDataAdapter dataAdapter = new OracleServiceCloudDataAdapter(
"SELECT Id, LookupName FROM Accounts WHERE DisplayOrder = 12", connection);
DataTable table = new DataTable();
dataAdapter.Fill(table);
DevExpress.XtraCharts.Series series = new DevExpress.XtraCharts.Series();
chartControl1.Series.Add(series);
DataTable table = new DataTable();
series.ValueDataMembers.AddRange(new string[] { "LookupName" });
series.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Qualitative;
series.ArgumentDataMember = "Id";
series.ValueScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
((DevExpress.XtraCharts.SideBySideBarSeriesView)series.View).ColorEach = true;
}
下のコードではOracle Service Cloud でDevExpress Web を操作するための設定方法を説明します。OracleServiceCloudDataAdapter はチャートのSeries プロパティにバインドします。Diagram プロパティはx 軸とy 軸をカラム名として定義します。
using DevExpress.XtraCharts;
using (OracleServiceCloudConnection connection = new OracleServiceCloudConnection(
"Url=https://abc.rightnowdemo.com;User=user;Password=password;"))
{
OracleServiceCloudDataAdapter OracleServiceCloudDataAdapter1 = new OracleServiceCloudDataAdapter("SELECT Id, LookupName FROM Accounts WHERE DisplayOrder = 12", connection);
DataTable table = new DataTable();
OracleServiceCloudDataAdapter1.Fill(table);
DevExpress.XtraCharts.Series series = new Series("Series1", ViewType.Bar);
WebChartControl1.Series.Add(series);
DataTable table = new DataTable();
series.ValueDataMembers.AddRange(new string[] { "LookupName" });
series.ArgumentScaleType = ScaleType.Qualitative;
series.ArgumentDataMember = "Id";
series.ValueScaleType = ScaleType.Numerical;
((DevExpress.XtraCharts.SideBySideBarSeriesView)series.View).ColorEach = true;
}