Import QVD file

0
Has anyone experience importing a QVD (Qlik View Data) file into Mendix?
asked
3 answers
1

Just wondering; what are you trying to achieve? You want to store the QVD file in Mx? Or do something with the content of that file in Mx?

answered
1

You can use use java https://github.com/ralfbecher/QlikView_QVDReader_Examples
Basic iteration

...
                    var qvdReader=new QVDReader(tmpCopy); 
                    while(qvdReader.hasRecord()){
                        //qvdReader.getFields();
                        //build rows here
                    }
...

 

answered
0

Hi Aswin,

I want to use the content of that file… 

answered