Skip to content

Releases: damgem/DataImporter

v0.1.6

05 Mar 10:10
Compare
Choose a tag to compare

Improved error message when importing into an access database and the columnames do not match.

v0.1.5

10 Feb 17:56
Compare
Choose a tag to compare

Introduction of Value Maps. One can specify a value map by adding them like this to the config.json:

{
    ...
    "valueMaps": {
        "mymap": {
            "good": "1",
            "neutral": "0",
            "bad": "-1"
        }
    }
    ...
}

And a field like myfield2 can now reference a Value Map like this:

...
    "mapping": {
        "myfield1": 1,
        "myfield2": {
            "sourceColumnIndex": 2,
            "valueMapName": "mymap"
        }
        "myfield3": 3
    }
....

This will map the value before writing it to the target file / database. In case a value map does not contain a mapping for the current value an error is displayed.

v0.1.4

14 Sep 12:43
Compare
Choose a tag to compare

Dimension of Main Window is now customizable in config.json by these 3 values:

{
    ...
    "windowWidth" : 680,
    "windowHeight" : 960,
    "keyColumnWidth": 150,
    ...
}

v0.1.3

07 Sep 16:12
Compare
Choose a tag to compare
  • fix indixing error
  • switch to 1-based indexing in config.json

v0.1.2

31 Aug 01:16
Compare
Choose a tag to compare
change version to 0.1.2