コード例 #1
0
        /// <summary>
        /// Creates a new <see cref="DbfRecord" /> with the same schema as the table.
        /// </summary>
        /// <returns>A <see cref="DbfRecord" /> with the same schema as the <see cref="T:System.Data.DataTable" />.</returns>
        public DbfRecord CreateRecord()
        {
            DbfRecord record = new DbfRecord(Fields);

            Records.Add(record);
            return(record);
        }
コード例 #2
0
        public DbfRecord CreateRecord()
        {
            DbfRecord record = new DbfRecord(fields);

            this.records.Add(record);
            return(record);
        }
コード例 #3
0
ファイル: Dbf.cs プロジェクト: lordstanius/dBASE.NET
 public void UndeleteRecord(DbfRecord record)
 {
     record.Undelete();
 }
コード例 #4
0
ファイル: Dbf.cs プロジェクト: lordstanius/dBASE.NET
 public void DeleteRecord(DbfRecord record)
 {
     record.Delete();
 }