Azure Lei Zhang的博客

weibo: LeiZhang的微博/QQ: 185165016/QQ群:319036205/邮箱:leizhang1984@outlook.com/TeL:139-161-22926

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2010年8月11日

摘要: //////////////////////////////////////////oracle部分存储过程create or replace package PACK_PAGE isTYPE type_cur IS REF CURSOR; --定义游标变量用于返回记录集 PROCEDURE PROC_PAGE ( Pindex in number, --分页索引 Psql in varchar2... 阅读全文
posted @ 2010-08-11 15:51 Lei Zhang的博客 阅读(1995) 评论(0) 推荐(0) 编辑

2010年7月20日

摘要: 主要原因是没有释放AO资源public class Form1 : System.Windows.Forms.Form{ private ESRI.ArcGIS.esriSystem.IAoInitialize m_AoInitialize = new ESRI.ArcGIS.esriSystem.AoInitializeClass(); private void Form1_Load(objec... 阅读全文
posted @ 2010-07-20 14:46 Lei Zhang的博客 阅读(498) 评论(0) 推荐(0) 编辑

2010年7月1日

摘要: CREATE OR REPLACE VIEW VIEW_PK ASSELECT t.table_name 表名,t.column_name 主键列 FROM User_Cons_Columns t, User_Constraints t2 where t.constraint_name=t2.constraint_name and t.table_name=t2.table_name and t2... 阅读全文
posted @ 2010-07-01 15:20 Lei Zhang的博客 阅读(185) 评论(0) 推荐(0) 编辑

摘要: create or replace view view_fk asselect a.table_name 外键表, c.column_name 外键列, b.table_name 主键表, d.column_name 主键列, decode(a.validated,'VALIDATED',0,1) 多选from user_constraints a, user_constraints b, use... 阅读全文
posted @ 2010-07-01 15:19 Lei Zhang的博客 阅读(183) 评论(0) 推荐(0) 编辑

2010年6月22日

摘要: Mature,dynamic and honest.思想成熟、精明能干、为人诚实。Excellent ability of systematical management.有极强的系统管理能力。Ability to work independently,mature and resourceful.能够独立工作、思想成熟、应变能力强。A person with ability plus flexi... 阅读全文
posted @ 2010-06-22 13:27 Lei Zhang的博客 阅读(461) 评论(0) 推荐(0) 编辑

2010年5月7日

摘要: 界面上放一个PieChart<mx:PieChart id="pieChartMain"> <mx:series> <mx:PieSeries field="VALUE" nameField="NAME" labelPosition="callout" showDataEffect="interpolateIn"> </mx:PieSeries> ... 阅读全文
posted @ 2010-05-07 13:10 Lei Zhang的博客 阅读(474) 评论(0) 推荐(0) 编辑

2010年5月1日

摘要: 主键不应该有任何意义,只是为了标志数据的唯一性.现在做的项目,因为牵涉到数据转移的原因,对主键没有进行大的改动,现在的主键,除了标志数据来源以外,还有数据信息的年月日等,非常的麻烦自动编号的主键,如果动态的生成表单后,还需要重复生成trigger和sequence来自增长,非常难以维护,而且以后数据迁移也会变得相当的棘手max+1,现在采用的就是这个方法,如果数据量非常大的情况下,取max会很慢,... 阅读全文
posted @ 2010-05-01 13:20 Lei Zhang的博客 阅读(232) 评论(0) 推荐(0) 编辑

摘要: 调用timer不能用System.Windows.Forms.Timer而应该用System.Timers.Timer System.Timers.Timer t = new System.Timers.Timer(interVal);//实例化Timer类,设置间隔时间为10000毫秒;t.Elapsed += new System.Timers.ElapsedEventHandler(Tick... 阅读全文
posted @ 2010-05-01 13:05 Lei Zhang的博客 阅读(1533) 评论(0) 推荐(0) 编辑

2010年4月18日

摘要: /// <summary> /// 查询方法 /// </summary> /// <param name="tabNames">TableName</param> /// <returns>数据集</returns> public DataSet Query(string tabNames,string columnName... 阅读全文
posted @ 2010-04-18 16:53 Lei Zhang的博客 阅读(1123) 评论(1) 推荐(0) 编辑

摘要: private var file:FileReference;private var displayTypes:FileFilter=new FileFilter("Excel文件(*.xls)","*.xls");private var fileFilter:Array=new Array(displayTypes);//初始化file = new FileReference();file.ad... 阅读全文
posted @ 2010-04-18 16:49 Lei Zhang的博客 阅读(1010) 评论(0) 推荐(0) 编辑