PowerTools ActiveReports for .NET 11.0J > ActiveReportsユーザーガイド > 基本操作 > ページレポート/RDLレポートの基本操作 > 動的に作成したJSONデータソースの使用 |
JSONデータプロバイダは、動的に作成したデータソースをサポートしています。JSONデータ用の接続文字列を式として入力し、パラメータを使用して値を渡すことで動的にデータソースを設定することができます。
動的に作成したデータソースを設定する手順は以下のとおりです。
メモ:
|
ページレポートの新規作成
式のサンプル |
コードのコピー
|
---|---|
="jsondoc=http://jsonplaceholder.typicode.com/comments/" & [@UserId] & ";schemadata={ ""$schema"": ""http://json-schema.org/draft-04/schema#"",""type"": ""array"", ""items"": {""type"": ""object"", ""properties"": { ""postId"": { ""type"":""integer"" }, ""id"": { ""type"":""integer"" }, ""name"": { ""type"":""string"" }, ""email"": { ""type"":""string"" }, ""body"": { ""type"":""string"" } }, ""required"": [ ""postId"", ""id"", ""name"", ""email"", ""body"" ] }}" |