Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

INTERBASE TIBTable->GetCurrentRecord

Status
Not open for further replies.

JustBeginer

Programmer
Mar 13, 2003
39
Hello!
I have BCB5 and Interbase 2007
I have crated table with to columns:

ID - integer
NAME - varchar2(50)

When I try to read the current record from the table with

char * buffer = new BYTE(TIBTable1->RecordSize);
TIBTable1->GetCurrentRecord(buffer);

There are about 150 characters in the begining of the
record. I thougth that, this is something like a record header. I created another one table with more fileds (3-integer, 3-varchar and 2 double precision) and I was suprised. The header is bigger than 150 characters.
Can anybody help me how to use TIBTable->GetCurrentRecord(char* Buffer) or ActiveBuffer(which is the same) ?
Is there compatibility between BCB5 Intebase components and IB 2007 or I should use older Interbase version?
Thank you for your help!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top