Click here to Skip to main content
Licence 
First Posted 20 May 2002
Views 208,986
Downloads 1,937
Bookmarked 43 times

The alxBase classes for work with DBF files

By Alexey | 5 Nov 2002
The alxBase classes for work with dbf files.
 
Part of The SQL Zone sponsored by
See Also
1 vote, 6.3%
1

2

3

4
15 votes, 93.8%
5
5.00/5 - 19 votes
1 removed
μ 4.74, σa 1.75 [?]

Introduction

This classes is useful for work with dbf files. The current version supports formats: FoxPro, Visual FoxPro, dBASEIII - dBASE 5.x, Clipper and HiPer-SIx. The memo fields also are supported. CDBFRecordset provides all the useful functions for navigation and modification in table. CDBFCursorset it is possible to use for work only with the selected records. CDBFTableDef it is used for creation and updating of structure of the table.

Create/Update table structure

For creation/updating of structure of the table are available functions:

    <li><code>CreateTable
  • ModifyTable
  • AddField
  • InsertField
  • ModifyField
  • MoveField
  • DeleteField
  • UpdateTable

For cancels any pending updates you may call function CanselUpdateTable().

try
{
	CDBFTableDef mNewTable;
	// begin create
	mNewTable.CreateTable(szFileName);

	// add field
	FIELD_REC FieldRec;
	memset(&FieldRec, 0, sizeof(FIELD_REC));
	memcpy(FieldRec.field_name, szFieldName, 10);
	FieldRec.field_type = FLD_TYPE_CHARACTER;
	FieldRec.len_info.char_len = 20;
	mNewTable.AddField(&FieldRec);

	// ...

	// end create
	mNewTable.UpdateTable();
}
catch(CDBFException* e)
{
	e->ReportError();
	e->Delete();
}

Navigation

For navigation are supported functions:

    <li><code>Move
  • MoveNext
  • MovePrev
  • MoveFirst
  • MoveLast
  • SetAbsolutePosition

You also may use functions: IsEOF(), IsBOF(), GetRecordCount(), GetAbsolutePosition().

try
{
	CDBFRecordset m_Set;
	m_Set.Open("test.dbf");
	while(!m_Set.IsEOF())
	{
		// ...
		m_Set.MoveNext();
	}
}
catch(CDBFException* e)
{
	e->ReportError();
	e->Delete();
}

Append/Edit record

For addition, changes of record are functions:

    <li><code>AddNew
  • Edit
  • SetFieldValue
  • Delete
  • Undelete
  • Update

You also may use functions: LockRecord(), UnlockRecord(), GetFieldvalue().

try
{
	m_Set.Edit();
	m_Set.SetFieldValue("Key",varKey);
	m_Set.SetFieldValue("NAME",varName);
	m_Set.SetFieldValue("PHONE",varPhone);
	m_Set.Update();
}
catch(CDBFException* e)
{
	e->ReportError();
	e->Delete();
}

Find Functions

For find are supported functions:

    <li><code>FindFirst
  • FindNext
  • FindLast
  • FindPrev
try
{
	BOOL bFind = m_Set.FindFirst("LIKE('*Club*', NAME)");
	while(bFind)
	{
		// ...
		bFind = m_Set.FindNext();
	}
}
catch(CDBFException* e)
{
	e->ReportError();
	e->Delete();
}

Parameter of functions: FindFirst(), FindLast(), ... string expression of dBASE language.

Filter

For the filter SetFilter function is used:

    <li><code>SetFilter
try
{
	m_Set.SetFilter("LIKE('*Club*', NAME)");
	m_Set.Requery()
	// ...
}
catch(CDBFException* e)
{
	e->ReportError();
	e->Delete();
}

This function is supported only in classes CDBFCursorset and CDBFMemCursorset.

DBFView Demo

This sample shows some opportunities of library alxBASE.

More information about the product can be found at http://www.alxsoft.narod.ru.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Alexey

Web Developer

Russian Federation Russian Federation

Member
Year of birth - 1974.
Eeducation - was ended by Kaliningrad State University in 1997.
Now I work as the engineer-programmer in Kaliningrad (RUSSIA).

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionAssertion Failed! PinmemberGoa8:36 3 Jul '07  
AnswerRe: Assertion Failed! PinmemberGoa6:18 4 Jul '07  
QuestionalxBase without mfc Pinmemberjoviens6:44 19 Dec '06  
AnswerRe: alxBase without mfc PinmemberS Mario19:08 26 Oct '09  
Generalfield content PinmemberJoao Araujo16:51 21 Jan '06  
GeneralDelete records Pinmemberpgiustinoni7:49 7 Jul '05  
GeneralGood work But... Pinmemberali TEKE4:37 11 Apr '05  
GeneralProblem in adding new records PinmemberMr.V.Stephen0:04 30 Jan '05  
GeneralRe: Problem in adding new records PinmemberEndlessWinter17:18 10 Feb '05  
GeneralIts really a very nice project Pinmembervstephen20020:37 22 Jan '05  
GeneralUsing the FindFirst function PinmemberAlex Evans12:14 1 Nov '04  
GeneralRe: Using the FindFirst function PinmemberEndlessWinter17:23 10 Feb '05  
GeneralConverted library for Windos CE PinmemberAlex Evans22:53 2 Oct '04  
GeneralUsing this with Windows CE PinmemberAlex Evans21:51 1 Oct '04  
GenerallockRecord() Pinmemberthangoftin219:18 9 Aug '04  
GeneralUsing the FindFirst function PinmemberAlex Evans12:17 1 Nov '04  
QuestionHow can i insert/update/delete image file? PinmemberMr.Ahn2:21 7 Jul '04  
QuestionHow to pack deleted record Pinmembersimranjeet4:08 11 Jun '04  
AnswerRe: How to pack deleted record PinmemberAlexey20:28 14 Jun '04  
QuestionHow to pack deleted record Pinsusssimranjit4:02 11 Jun '04  
QuestionSample db files? Pinmemberchenhuisheng16:21 13 Apr '04  
GeneralGreat!! - one question Pinmemberbdiamond4:30 29 Mar '04  
GeneralRe: Great!! - one question PinmemberAlexey19:33 29 Mar '04  
Generalcan't write header info correctly Pinmemberbdiamond8:10 18 Mar '04  
GeneralRe: can't write header info correctly PinmemberAlexey20:42 18 Mar '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 6 Nov 2002
Article Copyright 2002 by Alexey
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid