我使用以下代码从基于WBTRV32.dll的BTrieve 6.15数据库文件中收集数据 我总是将错误代码22返回到读取下一个数据线的位置 - 这是我的BTrieve文件没有固定列宽度的问题吗?
// Open file
RecordBuffer dataBuffer = new RecordBuffer();
int bufferLength = System.Runtime.InteropServices.Marshal.SizeOf(dataBuffer);
short status = (short)BTRCALL(0, positionBlock, ref dataBuffer, ref bufferLength, fileNameArray, 0, 0);
if (status == 0) <== Here Status = 0
{
// Get first record
dataBuffer = new RecordBuffer();
status = (short)BTRCALL(12, positionBlock, ref dataBuffer, ref bufferLength, fileNameArray, 0, 0); //BGETFIRST
if (status == 0) <== Here Status = 0
{
...
}
// Get subsequent records
while (status == 0) // BReturnCodes.END_OF_FILE or an error will occur
{
dataBuffer = new RecordBuffer();
status = (short)BTRCALL(6, positionBlock, ref dataBuffer, ref bufferLength, fileNameArray, 0, 0); //BGETNEXT
if (status == 0) <=== Here Status = 22 data buffer length overrun
{
}
}
}
答案 0 :(得分:1)
状态22表示“数据缓冲区太短”。根据{{3}}:
将数据缓冲区长度设置为大于或等于要检索的记录长度的值。
您需要确保在每次调用之前将数据缓冲区长度设置为正确的值。在您的代码中,您只需设置一次bufferLength
变量。如果您有可变长度记录,则返回到记录长度时设置该值,以便您作为开发人员知道返回了多少数据。在下一次GET呼叫之前,您需要将其重置为您希望返回的最大值。