码迷,mamicode.com
首页 >  
搜索关键字:account is locked    ( 2867个结果
静态变量和实例变量
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 静态方法和实例方法{ class Program { class Account ...
分类:其他好文   时间:2015-03-01 20:59:12    阅读次数:135
MVC5+EF6 (附加分页功能)
我们对之前的ViewsàAccountàIndex.cshtml 进行修改以完成今天的示例。界面样式修改前:下面对ViewsàAccountàIndex.cshtml进行如下修改:应用布局页 _LayoutAdmin.cshtml2. 将HTML部分body之外的全部删掉,只留下正文内容,运行这个页...
分类:Web程序   时间:2015-02-27 22:49:11    阅读次数:205
lua 面向对象
Account={balance=0}function Account.count(v) -- body print("value is:"..v)enda=Accounta.count(100)Account={balance=0}function Account.count(self...
分类:其他好文   时间:2015-02-27 06:38:48    阅读次数:144
oracle解锁问题:Record is locked by another user
解锁方法:1、查看锁select t2.username,t2.sid,t2.serial#,t2.logon_time from v$locked_object t1,v$session t2 where t1.session_id=t2.sid order by t2.logon_time;查出...
分类:数据库   时间:2015-02-26 20:20:18    阅读次数:170
Oracle的基本操作-解除用户,赋予权限
一、表的基本操作1.用户管理1.1初始状态下系统的用户在系统用户下,执行下面的查询语句可以查看到当前系统的所有用户select*fromdba_users;1.2创建一个用户SQL>createuserxpidentifiedbyxp;Usercreated.授予连接数据库的权限:SQL>grantconnecttoxp;Grantsucceeded.SQL&g..
分类:数据库   时间:2015-02-26 00:01:10    阅读次数:325
oracle的启动与关闭原理-事务commit或者rollback
4、事务4.1事务的概念从第一个DML语句开始执行,以rollback或者commit为结束标记,之前所有的DML操作(insert,update,delete)都是属于这个事务的范围内。4.2事务的提交操作(1)首先解锁一个用户并改密码SQL>alteruserscottaccountunlock;Useraltered.SQL>alteruserscotti..
分类:数据库   时间:2015-02-26 00:00:42    阅读次数:816
php中mail()改用msmtp发送邮件
msmtp的配置文件/etc/msmtprc或~/.msmtprc:1 account default2 host smtp.qq.com3 auth login4 from youremail@qq.com5 user youremail@qq.com6 password yourpassword...
分类:Web程序   时间:2015-02-25 09:05:44    阅读次数:243
shiro权限框架
权限的组成部分:用户 资源 角色 权限数据库关系表设计是根据自己项目需求设计的account表role表(id,rolename)account_role(id,aid,rid)permission(id,pername)role_permission(id,rid,pid)没有设置用户和权限的关系...
分类:其他好文   时间:2015-02-24 23:23:04    阅读次数:220
pfsense锁住自己
https://doc.pfsense.org/index.php/I_locked_myself_out_of_the_WebGUI,_help!登陆控制台,执行:#easyrulepasswantcpx.x.x.xy.y.y.y443xxxx是远程主机ip,yyyy是pfsense的wan端口ip(或lan端口ip)上述命令,会在最后面加规则,规则是优先匹配的,所以可能还是无法登陆可以先..
分类:其他好文   时间:2015-02-24 13:57:15    阅读次数:184
ORACLE锁机制
Row Share (RS)This lock, also called a subshare table lock (SS), indicates that the transaction holding the lock on the table has locked rows in the t...
分类:数据库   时间:2015-02-19 16:16:47    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!