Visualizing 3DTiles from a database

Is there any chance for storing 3DTiles in a database and visualize it directly from that database ?

Thank you.

The asset server that comes with the on-premise version of Cesium ion does that (see https://cesium.com/docs/on-premise/tutorials/hosting-3d-content/).

Otherwise you might need to write your own static server that reads the database and serves the files. The open source 3d-tiles-tools provides a command line tool for converting from a 3D Tiles database to directory, so it could provide some guidance on reading the database file:

https://github.com/AnalyticalGraphicsInc/3d-tiles-tools/tree/master/tools#tilesettodatabase

Actually, what i am trying to ask is can we store 3DTiles to a DBMS such as Oracle, Postgre or MongoDB and visualize it directly from that database?

Yes, you would just need to write a server that reads from the database and retrieves and serves the right tile for the given request.