Как интегрировать Oracle APEX с отпечатком посещаемости

Как интегрировать Oracle APEX с отпечатком посещаемости ?? У меня есть Oracle DB 18c и Oracle APEX 19.1, мне нужно интегрировать мое приложение APEX с отпечатком пальца посещаемости, чтобы получить определенные данные для всех пользователей, которые печатают свой отпечаток пальца.


person X_Dev    schedule 08.12.2019    source источник


Ответы (1)


Вот как это работает здесь, где я работаю:

  • fingerprint device sends data into an Oracle database
    • I don't know whether you can do that yourself, or should it be done by a representative of the company that sold you the device
  • once data is in the database, the rest is easy
    • if Apex is installed in the same database that contains attendance data, just let your workspsace see that schema
    • if not, use a database link to access attendance data and create a view in your schema which will show that data
      • note that you might need to properly tune your queries because - for the first several days/weeks/months, when there's not that many data, everything will work smoothly. But, with zillions of rows, things tend to slow down
      • материализованное представление может быть быстрее в таком случае, но - ожидайте определенной задержки, т.е. вы не увидите чьи-то данные немедленно
person Littlefoot    schedule 08.12.2019