Posts

Showing posts from April, 2026

Programming with Oracle APEX 2026 batch students Understanding Pages and Regions in Oracle APEX

Image
Understanding Pages and Regions in Oracle APEX A Complete Guide for Programming with Oracle APEX 2026 Batch Students Oracle APEX continues to be one of the most powerful low-code platforms for building enterprise-grade web applications. If you're part of the Programming with Oracle APEX 2026 batch , understanding Pages and Regions is a fundamental step toward mastering APEX development. What is Oracle APEX? Oracle Application Express (APEX) is a low-code development platform that allows developers to build scalable, secure, and responsive web applications directly from the browser. Key Features: 100% browser-based development Built-in security (Authentication & Authorization) Drag-and-drop UI components REST API and Web Services support Rapid application development Understanding Pages in Oracle APEX A Page is the main building block of any APEX application. Every application is simply a collection of pages. Key Page Properties: ...

Using OLLAMA in Oracle Apex.

What if you could chat with an AI model — completely offline, with no API keys, no usage costs, and no data leaving your server — right inside your Oracle APEX application? That's exactly what OLLAMA makes possible. In this guide, we walk through the full process of setting up OLLAMA locally, exposing it as an HTTP endpoint, and calling it from Oracle APEX using APEX_WEB_SERVICE . What is OLLAMA? OLLAMA is an open-source tool that lets you run large language models (LLMs) like Llama 3 , Mistral , Gemma , and many others directly on your local machine — no cloud required. It exposes a simple REST API on localhost:11434 that you can call just like any other web service. Runs 100% offline — your data never leaves your machine Supports dozens of open-source models REST API compatible with the OpenAI format Free and open-source (MIT license) Architecture Overview Oracle APEX Page │ ▼ PL/SQL Process (APEX_WEB_SERVICE.MAKE_REST_REQUEST) │...