摘要:
--创建序列 --入库create sequence rk_seq;--出库create sequence ck_seq;--移库create sequence yk_seq; --创建存储过程 create or replace procedure reset_seq(rk_seq_name in 阅读全文
摘要:
最原始接口:public string GetProjectInfo(string latest_update_time); 修改后接口:public string GetProjectInfo(string latest_update_time, string appKey, string tim 阅读全文
摘要:
请求超时,后台的处理时间超过了ajax设置的timeout时间,就会取消请求,没有response 阅读全文
摘要:
我所做过的情况: 所有的数据都是存在末级节点上面的,然后查询的时候要求父节点要显示子集的合计 图一显示末级上面的数据 图二显示父节点的值 可以看出父级节点的值是子集的合计 情况就是这样下面给出一个demo,在数据库执行以下就可以看出来该怎么做了 create table t (id number, 阅读全文
摘要:
默认为180天 SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'; 使用这条语句改成永不过期ALTER PROFILE DEFAULT LIMIT PASSWOR 阅读全文
摘要:
语法: background-image: linear-gradient(direction, color-stop1, color-stop2, ...); /* 从上到下,蓝色渐变到红色 */ linear-gradient(blue, red); /* 渐变轴为45度,从蓝色渐变到红色 */ 阅读全文
摘要:
.radar { width: 33%; height: 300px; float: left; margin: 10px 0; } <div style="line-height: 30px;background-color: white;overflow: hidden;margin: 0 20 阅读全文
摘要:
class QuantityTable { public string NAME { get; set; } public string T { get; set; } public string UNIT { get; set; } public decimal DAYWQUAN { get; s 阅读全文
摘要:
前段时间项目中要用到缓存已解决效率的问题,研究了一下.net中的Cache缓存,结果是研究了半天最后还是没有用这种方式,哎,很多问题从业务上就能优化,不说了 using System; using System.Collections.Generic; using System.Linq; usin 阅读全文
摘要:
create table tastTable(id number,name varchar2(50)); insert into tastTable(Id, Name)values(1,'张三');insert into tastTable(Id, Name)values(2,'李四');inser 阅读全文