摘要:
//反射 public static TOut TransReflection(TIn tIn) { TOut tOut = Activator.CreateInstance(); var tInType = tIn.GetType(); foreach (var itemOut in tO... 阅读全文
摘要:
sqlserver: select name from sysobjects where xtype='U' and name like 'AM%' oracle: select table_name from user_tables where table_name like 'AM%' 阅读全文
摘要:
CREATE GLOBAL TEMPORARY TABLE tablename (columns) [ ON COMMIT PRESERVE | DELETE ROWS ] SQL> create global temporary table emp_temp(eno number) on comm 阅读全文