17 lines
762 B
HTML
17 lines
762 B
HTML
<!doctype html>
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
|
<body>
|
|
<div th:fragment="source">
|
|
<div class="alert alert-danger mb-0" th:if="${errorMessage}" th:text="${errorMessage}"></div>
|
|
<section class="probe-exchange" th:if="${source}">
|
|
<h3>
|
|
<span th:text="${object.owner() + '.' + object.objectName()}">ADMIN.TABLE_NAME</span>
|
|
<span class="text-muted"> / 기본 ORDS Handler PL/SQL</span>
|
|
</h3>
|
|
<p class="form-hint">이 소스는 VPD context를 설정한 뒤 한 테이블을 SELECT하는 기본 구성입니다. 실제 수정·저장은 <a href="/ords-handlers">ORDS 핸들러</a> 화면에서 parsing schema 권한으로 진행하세요.</p>
|
|
<pre th:text="${source}">source</pre>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|