How to create virtual cube in mondrian cube framework? - cube

I have got two tables through which I need to generate a cube report, I need to displayy measures from columns of both the tables. I browsed through the documents on the website and learned that VirtualCube is the way to go if I am to accomplish this feat. However the document is not very clear and lacks a working example. Can anyone suggest or give link to a working example (a mondrian.xml file) which can give me some clarity.
Thanks in advance.

Related

Editing shapefile in a webapp

I need to develop a web application to make users edit a shapefile in the browser.
Main idea would be to load a shapefile with his layers, and then let users create lines, polylines and so, saving that data to the shapefile.
An improvememt would be to save data to db.
I searched on the Internet but I can't find a opensource solution.
I took a look at lizmap and qgis server but It seems there Is not the possibility to insert vectorial items or edit the Ones already present.
Can someone help? Thanks in advance
What you are looking for can be achieved by using GeoServer and a WFS-T client such as OpenLayers. See for example this tutorial or this question for examples.

How to insert coding and Maths formula into database

I am working on a project which contains the question with options and solution of that question. I want to display the Mats equations and some coding questions on webpage. So my query is what will the the procedure to insert those equation into Database and display it on my webpage.
for the reference I want to display like this following link :
http://www.indiabix.com/aptitude/compound-interest/
http://www.indiabix.com/c-programming/functions/
Thanks
Frankly speaking as far as I understood your problem you do not have Idea about coding (I may be wrong but as you are not suggesting any particular database and any technical stuff I'm assuming this.)
You can use prebuilt frameworks for this job you don't need to design application from scratch unless it is your some project.
Some suggested Links are this ...
Moodle
WordPress
You need to find plugin after installing these frameworks on your webserver bundle
For that you can use
WAMP on windows or LAMP if on Linux
But Again your question too general. Give some inputs first
Information About Moodle:
IF you go throught moodle webiste you will get to know that how powerful LMS( learning management system ).
You just need to know how to configure such websites
Go through this video tutorials if you want to
Infromation About WordPress:
Wordpress is general purpose Website so you can develop any service with it very easily and everything including database is taken care by it (same case with moodle but moodle is more focused on LMS )
You have to search for LMS plugin inside wordpress for your purpose.
KINDLY ACCEPT THIS ONE AS ANsWER if you find information usefule... (Points help me contribute more and allows me also to ask question)

VB program guidance

I am trying to create a program that will have a form to add users with multiple information (first/last name,tel,vat,email etc.) and store them in a database.
Then I want to have a standard form and will choose from the database the user each time I want to print the form. This way when the user is chosen all fields will be filled with the info from the database.
I have no clue with VB at all so all I ask here is for some guidance.
Can someone point me in the right direction?
Sounds like you need to learn .NET first, so head over the Microsoft Virtual Academy and wade through VB Fundamentals for Absolute Beginners.
If you are interested in making a user website, then this Microsoft tutorial is a good place to start. It shows how to create a Movie database with maintenance screens. You should be able to adapt it to "users".
You can also search the MSDN Developer Code Samples.
Happy coding.
P.S. Stack Overflow is for specific technical questions, not general inquiries. That's why your question is getting down-voted.

Form details to be displayed in the grid

I have basic question from my side, as I am Beginner level in Delphi XE2.
I am using VCL form and entering the Form details in the edit box and to be displayed in the grid with several basic operation like Add, Delete and Update/Retrieve. Whereas the details have to be saved in the SQL server.
If I am using the form later on, i need the Previous data in the grid from the SQL. For those operation my Update/Retrieve field operation must be done on Delphi or SQL server.
Hope everyone would have come across these basic forms. So help me.
Thanks in advance.
Regards,
Rajan.
http://docwiki.embarcadero.com/RADStudio/en/Developing_Database_Applications
http://docwiki.embarcadero.com/RADStudio/en/Developing_Database_Applications_Index
Those are basic topics about making your application connecting to database.
ExpressQuantumGrid is very complex and expensive control on it's own, it does not have online help but does have offline one, and there is "Task-based help / Connecting to Data" section that covers what u need about that certain grid. Do you really use tcxgrid component or just put that tag at random guess ? You say u have no Delphi experience but did you really purchase DevArt library which price may be almost as large as Delphi itself ? If you did you may try opening their VCL demos and reading their sources how they were implemented.

How do database driven blog-style websites work? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Before I start: I know this is a very broad question, but it is the best way I could phrase it, I have searched around a lot and can only seem to find generic explanations. I searched SO and didn't find much. I have also skimmed through some pages in the wordpress codex, and didn't find anything really useful.
I would like to create a simple database driven blog-style website, it will really only consist of stories (their title, date, content, etc), I just began teaching myself web development and my idea of how database driven websites work has proven to be completely wrong. I figured you would always need a file connecting to the database for each article, but the more I read I learn about mark up being generated on request, and so on, so the actual /year/month/day/article doesn't actually have to exist on the server, or that may be wrong, that is why I am here.
As I said I cannot find much on this topic that isn't a generic graphic of a server interacting with a web page. How does one go about creating a database driven website of this style? Are the files/directories not actually on the server but only created on a case by case basis as someone requests it? If so, then why can you type out a complete url and it be there with out throwing a 404? I have a lot of questions, really all I need is a strong explanation of how these sites work, code examples, and so on. Could someone explain how they work or point me to information (recommended articles, examples or books)?
EDIT: Please don't recommend a framework, I want to understand how these sites work and build one myself.
It's actually quite simple. Wordpress's index page calls wp-blog-header.php. That file calls for other files, and those files call for other files. It goes on for some time until all the contents of the page are actually loaded.
The databases come in when you start thinking about having users. Obviously the user information is stored in the database. Beyond that, Wordpress keeps post titles, dates, and other information in the database for easy loading later on.
Comments are also stored in the database. Each comment is associated with a number, and in the database, just like the posts, the dates/times as well as the usernames associated with the comments are kept.
Further exploration in the actual Wordpress files will reveal a lot of interesting features.
You might want to check out Django. It is an open source Python web framework that provides a lot of the functionality you are talking about. It also has a lot of very good high-level documentation with even a free e-book. It is centered a bit more on newspaper type sites than blogging, but most of the same principles apply. If you are new to python and like to use IDEs I would recommend checking out PyCharm. It has tight Django integration and makes for simple project setup and debugging.
Generally speaking, you'll use a framework that will take input parameters (year/month/day/article), run some code to fetch data from the database, and dynamically create the webpage. There isn't an actual .html file sitting on the webserver. One of the most popular frameworks to do websites like you're describing is Ruby on Rails, which makes it incredibly simple to do.

Resources