摘要:
//////////////////////////////////////////oracle部分存储过程create or replace package PACK_PAGE isTYPE type_cur IS REF CURSOR; --定义游标变量用于返回记录集 PROCEDURE PROC_PAGE ( Pindex in number, --分页索引 Psql in varchar2... 阅读全文
摘要:
主要原因是没有释放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... 阅读全文
摘要:
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... 阅读全文
摘要:
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... 阅读全文
摘要:
Mature,dynamic and honest.思想成熟、精明能干、为人诚实。Excellent ability of systematical management.有极强的系统管理能力。Ability to work independently,mature and resourceful.能够独立工作、思想成熟、应变能力强。A person with ability plus flexi... 阅读全文
摘要:
界面上放一个PieChart<mx:PieChart id="pieChartMain"> <mx:series> <mx:PieSeries field="VALUE" nameField="NAME" labelPosition="callout" showDataEffect="interpolateIn"> </mx:PieSeries> ... 阅读全文
摘要:
主键不应该有任何意义,只是为了标志数据的唯一性.现在做的项目,因为牵涉到数据转移的原因,对主键没有进行大的改动,现在的主键,除了标志数据来源以外,还有数据信息的年月日等,非常的麻烦自动编号的主键,如果动态的生成表单后,还需要重复生成trigger和sequence来自增长,非常难以维护,而且以后数据迁移也会变得相当的棘手max+1,现在采用的就是这个方法,如果数据量非常大的情况下,取max会很慢,... 阅读全文
摘要:
调用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... 阅读全文
摘要:
/// <summary> /// 查询方法 /// </summary> /// <param name="tabNames">TableName</param> /// <returns>数据集</returns> public DataSet Query(string tabNames,string columnName... 阅读全文
摘要:
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... 阅读全文