Files
TeslaRel410/BORLAND/BDE/EXAMPLES/PASCAL/ALIASES.PAS
T
CydandClaude Fable 5 63312e07f9 source410: literal 4.10 source reconstruction + BC++ 4.52 fleet toolchain archived
- BORLAND/: Borland C++ 4.52 (chosen over 4.5 by byte-match: CODE/RP/CW32.LIB
  is identical to 4.52's install lib). BCC32/TLINK32/TLIB/MAKE run natively on
  Win11; CODE/BT/OPT.MAK is the shipped BTL4OPT.EXE's exact flag recipe
  (extender = Borland PowerPack DPMI32, not Phar Lap TNT).
- restoration/source410/: the literal 1995-form reconstruction of the missing
  BT game source (never mixed into CODE/). Round 1-3 state:
  * 6 of 10 surviving original TUs COMPILE CLEAN under the period toolchain
    (BTMSSN, BTCNSL, BTSCNRL, BTTEAM, BTL4MODE, BTL4ARND) - first builds
    since 1996.
  * BT_L4/BTL4APP.CPP pilot reconstruction: 12/12 functions, Fail() lands on
    its binary-recorded line 400 exactly.
  * BT/BTCNSL.HPP: console wire IDs recovered from the binary's ctors
    (Killed=9, Damaged=10, ScoreUpdate=13, DeathWithoutHonor=15 [T1];
    TeamScore=12 flagged [T4]).
  * MUNGA/: 8 engine-header backfills back-dated from the BT412 WinTesla tree
    (VDATA numbering decomp-verified; AUDREND's OpenAL-era virtual removed -
    the period compiler is the drift detector).
  * Tooling: backdate.py (WinTesla->1995 header transform), compile410.sh
    (per-TU verification sweep under authentic OPT.MAK flags).
  * README: corrected roadmap - MECH.HPP is the capstone grown with the mech
    TU reconstructions; BTREG.CPP green = the header-family milestone.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-19 07:33:26 -05:00

133 lines
4.2 KiB
ObjectPascal

{ Aliases.pas }
program Aliases;
{$IfDef VER80}
uses SnipTool, SnipData, SysUtils, WinTypes, WinProcs,
DbiProcs, DbiTypes, DbiErrs;
{$Else}
uses WinTypes, WinCrt, Strings, DbiProcs, DbiTypes, DbiErrs,
SnipTool, SnipData;
{$EndIf}
{=====================================================================
Procedure: Alias();
Input: None.
Return: None.
Description:
This example list the aliases available in the current
configuration file.
===================================================================== }
var
hDb: hDBIDb; { Handle to the Database }
hDbCur: hDBICur; { Handle to the table }
rslt: DBIResult; { Return value from IDAPI functions }
TblProps: CURProps; { Table Properties }
pRecBuf: pBYTE; { Record Buffer }
szDatabase: array[0..DBIMAXNAMELEN+1] of CHAR;
{ String to contain the driver name }
bIsBlank: BOOL; { Is the field blank? }
DBDes: DBDesc; { Database descriptor }
begin
Screen('*** Alias Information Example ***');
Screen('');
Screen(' Initializing IDAPI...');
if (InitAndConnect(hDb) <> DBIERR_NONE) then { Terminate example if }
begin { Initialization fails }
Screen('');
Screen('*** End of Example ***');
exit;
end;
Screen(' Setting the default Database directory... ');
ChkRslt(DbiSetDirectory(hDb, pCHAR(szTblDirectory)), DBIERR_NONE,
' Error - DbSetDirectory.');
rslt := ChkRslt(DbiOpenDatabaseList(hDbCur), DBIERR_NONE,
' Error - OpenDatabaseList.');
if (rslt <> DBIERR_NONE) then
begin
Screen('');
Screen(' Close the Database and exit IDAPI...');
CloseDbAndexit(hDb);
Screen('');
Screen('*** End of example ***');
exit;
end;
{ Get the size of the record buffer }
ChkRslt(DbiGetCursorProps(hDbCur, TblProps), DBIERR_NONE,
' Error - GetCursorProps.');
{ Allocate space for the Record Buffer }
GetMem(pRecBuf, TblProps.iRecBufSize * sizeof(BYTE));
if not Assigned(pRecBuf) then
begin
Screen(' Error - Could not allocate memory.');
ChkRslt(DbiCloseCursor(hDbCur), DBIERR_NONE,
' Error - CloseCursor.');
Screen('');
Screen(' Close the Database and exit IDAPI...');
CloseDbAndexit(hDb);
Screen('');
Screen('*** End of example ***');
exit;
end;
Screen(' Go to the beginning of the table...');
ChkRslt(DbiSetToBegin(hDbCur), DBIERR_NONE,
' Error - SetToBegin.');
{ Display information about all available aliases
set in the configuration file. }
while (DbiGetNextRecord(hDbCur, dbiNoLock, pRecBuf, nil)
= DBIERR_NONE) do
begin
{ Get the name of the Driver }
ChkRslt(DbiGetField(hDbCur, 1, pRecBuf, @szDatabase,
bIsBlank), DBIERR_NONE,
' Error - GetField.');
{ Skip a line }
Screen('');
{ Get the description of the alias }
rslt := ChkRslt(DbiGetDatabaseDesc(szDatabase, @DBDes),
DBIERR_NONE, ' Error - GetDriverDesc.');
if (rslt <> DBIERR_NONE) then
continue;
{ Display the information about the database }
Screen(' Logical Name or Alias: '+
' '+StrPas(DBDes.szName)+'');
Screen(' Physical Name/Path: '+
' '+StrPas(DBDes.szPhyName)+'');
Screen(' Database type: '+
' '+StrPas(DBDes.szDbType)+'');
end;
{ Free the record buffer }
FreeMem(pRecBuf, TblProps.iRecBufSize * sizeof(BYTE));
{ Close the table }
ChkRslt(DbiCloseCursor(hDbCur), DBIERR_NONE,
' Error - CloseCursor.');
Screen('');
Screen(' Close the Database and exit IDAPI...');
CloseDbAndexit(hDb);
Screen('');
Screen('*** End of Example ***');
end.