- 浏览: 4257 次
- 性别:
- 来自: 武汉
最新评论
文章列表
限制第三方系统接入时只能访问视图的权限
- 博客分类:
- Oracle
第一步:
通过带有dba权限的用户root登录plsql,在plsql中执行创建用户的操作
create user bytterTest identified by bytterTest;
第二步:
执行生成需要开放给第三方视图的sql
create or replace view INVEST_CLOCK_VIEWSTest as
select aca.account_id,acs.savein_id from ac_account aca,ac_savein acs
where aca.account_id = acs.account_id;
第三步
创建用户成功后,对创建的用户授予 ...
autoCreate:{tag: "input", type: "file", contenteditable:false} //使用autoCreate方式进行创建file上传控制文本域输入
//对页面元素file进行清空的操作(因为rest无法清除file的的上传状态,需要手动进行处理)
document.getElementById("picture2").outerHTML=document.getElementById("picture2").outerHTML;
要想让表单无刷新提交,需要用到表单的target属性,然后页面放置一个iframe,target属性指向iframe即可实现
测试程序如下:
<script>
function upload(fileObj)
{
if(fileObj.value)
{
document.uploadForm.action = "ajax_upload.action";
document.uploadForm.submit();
}
return fa ...
批量更新是指在一个事务中更新大批量数据,批量删除是指在一个事务中删除大批量数据。以下程序直接通过Hibernate API批量更新CUSTOMERS表中年龄大于零的所有记录的AGE字段:
tx = session.beginTransaction();
Iterator customers=session.find("from Customer c where c.age>0").iterator();
while(customers.hasNext()){
Customer customer=(Customer)customers.next();
customer. ...