摘要:
merge into test_table t1 using (select 'zhangsan' username,'/root/test' path, 'this is test' description from dual) t2 on (t1.path = t2.path) when mat 阅读全文
摘要:
CREATE OR REPLACE FUNCTION Fun_getbirthDayfromIdntity (Idntity IN VARCHAR2) --定义入参/*根据身份证号获取出生日期*/RETURN DATE ISbirthday DATE;--定义返回值 bx_exception EXC 阅读全文
摘要:
转载地址https://www.cnblogs.com/haofaner/p/6048017.htmlusing System; using System.Linq; using System.IO; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Checksums; using System.Diagnosti... 阅读全文
摘要:
记得下次开发程序是一定要书写日志,这样可以避免很多错误,可以说清楚不是自己的问题。using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace CACPayLib { public class Log { ... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; namespace ChineseCalender { public class myTextBox:TextBox { publ... 阅读全文
摘要:
IF EXISTS (SELECT 1 FROM sysobjects WHERE name='pd_invoice_save' AND type ='P') DROP PROC pd_invoice_save go CREATE PROC pd_invoice_save ( ... 阅读全文