Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
read_from_file_excel_java_url [2020/04/26 03:33] 127.0.0.1 external edit |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Reading Data From External Sources ===== | ||
- | |||
- | There are numeral ways to read the data from external sources to populate data set or to retrieve requirements tags and UI Map. All you have to do is the specify the source uri in one of the following formats (rel 3.1.17): | ||
- | |||
- | * Excel: | ||
- | * CSV: | ||
- | * TSV: | ||
- | * URL: | ||
- | * Java: | ||
- | |||
- | ---- | ||
- | ==== Read from Excel, CSV, TSV ==== | ||
- | For reading Excel, CSV and TSV, the system will search for the file in the following order: | ||
- | |||
- | - absolute path as specified in filePath | ||
- | - //dataset// folder in the model folder | ||
- | - //model// folder | ||
- | |||
- | If the source contains more columns than needed, you may specify a list of columns as shown in the example above. | ||
- | |||
- | //For Excel// Only: the following format/ | ||
- | |||
- | Excel 95, 97, 2000, XP, and 2003 workbooks | ||
- | |||
- | ---- | ||
- | |||
- | ==== Reading from Database==== | ||
- | You can use the above notation in //db// attribute in [[datasetTag|DataSet tag]] and UI Map URI in [[ModelNode|Model Property]]. With this approach, you will not need to define <db> tag. | ||
- | |||