Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

What programming language do QlikView applications use?

Can you tell me what programming language QlikView applications uses?  It looks like this dashboard has the basic functionality our client needs without having to rely on Esri technology. 

4 Replies
buzzy996
Master II
Master II

most of the script look like sql but it' snot exactly..it's qlikview script. and ppl wil use wherever need vb script for example macros.

petter
Partner - Champion III
Partner - Champion III

For QlikView:

The internal Macro Module can use either Microsoft VBScript or JScript (Microsofts included scripting languages that comes with Windows). From the macros you have full access to automate QlikView through its extensive and documented object model.

From document extensions or object extensions you can use any web-type language that use JavaScript and can interface with JavaScript to controll QlikView server-based applications.

If you want you could also use any application language that can use COM to also access and use the object model of QlikView. For instance Visual Studio C# or VB.NET or basically whatever you prefer.

For Qlik Sense:

This is much more map-application friendly and it's API's are very extensive even from the very first versions. So JSON, WebSockets and REST could be used to interface from most modern application languages. There are a number of mashup-API's too for Qlik Sense.

vvvvvvizard
Partner - Specialist
Partner - Specialist

Micosft expression language on the front end

SQL for loading data from databases into Qlikview

VBScript and Jscript for Macros

Anonymous
Not applicable
Author

Back-end script:

SQL to load data from a database.  The syntax of SQL is defined by the database you read from, not by QlikView.  QlikView's own SQL-like syntax to load data from any other data source.

Front-end expressions:

It's own set of functions, sometimes but not always similar to Excel functions.

Optional:

VBScript or JScript for macros

Java Script for extensions.