Exemple #1
0
        /// <summary>
        /// Queue a row for insertion; may perform insert of buffered rows.
        /// </summary>
        /// <param name="row"></param>
        public void Insert(Row row)
        {
            Int32 result = API.TabTableInsert(m_Handle, row.Handle);

            if (result != API.TAB_RESULT_Success)
            {
                throw new TableauException(ConvertEnum.FromResult(result), API.TabGetLastErrorMessage());
            }
        }