예제 #1
0
        /// <summary>
        /// 取Temp table schema
        /// </summary>
        /// <returns>回傳table schema</returns>
        public DataTable GetTempTableSchema()
        {
            DBO.PUR_PurchaseOrderDBO dbo = new PUR_PurchaseOrderDBO(ref USEDB);

            DataTable Dt;

            try
            {
                Dt = dbo.doQueryTempTableSchema();
                return Dt;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }