Daniel C.
Daniel C.

Reputation: 40

What type of web framework should be used to compare data between databases?

I want to query 2 or more Databases every day at a certain time, compare the resulting data and show the inconsistencies in a web page.

Mainly the data will match through PKs and comparison made using some column values.

So I´m reading about web frameworks like Django, Node, Spring, Rails, etc and wondering if that's what I want. If a REST API is what suits this purpose or if it's something completely different.

Upvotes: -3

Views: 231

Answers (2)

Saeed Aghdam
Saeed Aghdam

Reputation: 315

I suggest you compare the data in the database layer and only return the comparison results, so you can show them with any framework.

Upvotes: 0

Ignacio Ara
Ignacio Ara

Reputation: 2582

First of all you'll need to focus in the databases that you're going to read, are they SQL/MongoDB/other?

Then think about the website that you're going to build, single page/multiple pages?

Upvotes: 0

Related Questions