06 2021 档案

摘要:lengthb(string)计算string所占的字节长度:返回字符串的长度,单位是字节 length(string)计算string所占的字符长度:返回字符串的长度,单位是字符 对于单字节字符,lengthb()和length()是一样的 可以用lengthb('string')=length( 阅读全文
posted @ 2021-06-17 16:33 Journey&Flower 阅读(3609) 评论(0) 推荐(0)
摘要:说明: if else 是用choose when otherwise choose为一个整体, when是if , otherwise是else <choose> <when test="1.equals(1)"> //代码块儿1 </when> <otherwise> //代码块儿2 </oth 阅读全文
posted @ 2021-06-11 13:51 Journey&Flower 阅读(76) 评论(0) 推荐(0)
摘要:一.先找到数据库的环境变量 如果是在root账户下,须先登录到数据库所在账户 su oracle cat ~/.bash_profile PATH=$PATH:$HOME/.``local``/bin:$HOME/bin``export PATH``export ORACLE_BASE=/u01/a 阅读全文
posted @ 2021-06-05 23:07 Journey&Flower 阅读(708) 评论(0) 推荐(0)
摘要:1、查询对象表 db_object_cache ,name为对象名(表名/方法名/过程名) --检查对象是否被锁 select * from v$db_object_cache where name=upper('proc_wip_al_tran_inf_half_back') and locks! 阅读全文
posted @ 2021-06-05 22:12 Journey&Flower 阅读(1019) 评论(0) 推荐(0)
摘要:1、在按钮控件的 Button_Paint 事件上绘画 Button button = new System.Windows.Forms.Button(); button.Paint += Button_Paint; 2、事件内容 private void Button_Paint(object s 阅读全文
posted @ 2021-06-02 17:15 Journey&Flower 阅读(967) 评论(0) 推荐(0)