Marco Salerno
Marco Salerno

Reputation: 5201

Can we say that a database is a webservice that works with data on filesystem?

These days, i made a webservice, that extracts data from files, sort, search etc.. and retrive data to the request sender.

Then, i noticed that it was like how a database works, it take a "query" which is equal to a string with keywords in it and then filter data on files, based on the request parameters.

Can we say that a database is a webservice that works with data on filesystem?

Upvotes: 0

Views: 19

Answers (1)

Quentin
Quentin

Reputation: 943843

Usually not.

It is rare that communication with a database is done over HTTP, especially when a database uses SQL.

Web services are very much a subset of all services.

Upvotes: 1

Related Questions