An extbase extension shall select data from an external non-typo3 database and display them in TYPO3 frontend. Updating data or insertion of new data is not planned. It is not allowed to store the external data in the local TYPO3 system. The data are relational, and the external database is physically on an external server.
Upto now a pibase extension was used for this. The funcionality shall now be replaced by an extbase extension.
How can the external database be accessed with extbase?
I solved it with a helper utility which can send SQL SELECT requests to the external server and handles the connection. It works on PHP level with mysqli commands.
In the repository classes I build the SQL string and call the helper utility to handle the connection. As results I return arrays.
Like this I am able to handle anything in my controller and with the FLUID mechanisms.
Works fine.