Database Interface Concepts (DBI’s) define statements and rules for moving data between Fox and Oracle.
Two very simple DBI’s:
<fm:db-interface-list>
<fm:db-interface name="dbint-emp">
<fm:query name="qry-emp">
<fm:select>
SELECT *
FROM scott.emp
</fm:select>
</fm:query>
</fm:db-interface>
<fm:db-interface name="dbint-dept">
<fm:query name="qry-dept">
<fm:select>
SELECT *
FROM scott.dept
</fm:select>
</fm:query>
</fm:db-interface>
</fm:db-interface-list>