我正在使用 apex 4.0 并使用预制报告、HTML、jQuery JavaScript 和 CSS 在区域中构建报告,并且我想从我的 Oracle 数据库中检索数据。
如何从我的 Oracle 数据库中检索此代码中的数据?
<a class="offline-button" href="../index.html">Back</a>
<script src="#WORKSPACE_IMAGES#people.js" type="text/javascript"></script>
<div id="example" class="k-content">
<div id="clientsDb">
<div id="grid" style="height: 380px"></div>
</div>
<style scoped>
#clientsDb {
width: 692px;
height: 413px;
margin: 30px auto;
padding: 51px 4px 0 4px;
background: url(#WORKSPACE_IMAGES#clientsDb.png) no-repeat 0 0;
}
</style>
<script>
$(document).ready(function() {
$("#grid").kendoGrid({
dataSource: {
data: createRandomData(50),
pageSize: 10
},
groupable: true,
sortable: true,
pageable: {
refresh: true,
pageSizes: true
},
columns: [ {
field: "FirstName",
width: 90,
title: "First Name"
} , {
field: "LastName",
width: 90,
title: "Last Name"
} , {
width: 100,
field: "City"
} , {
field: "Title"
} , {
field: "BirthDate",
title: "Birth Date",
template: '#= kendo.toString(BirthDate,"dd MMMM yyyy") #'
} , {
width: 50,
field: "Age"
}
]
});
});
</script>
</div>