TurboDB Workbench
Previous  Top  Next


tdbwkb ist ein kleines textbasiertes Freeware Tool zur Verwaltung von TurboDB Tabellen. Es ist für Windows und Linux erhältlich und kann auch von unserer Website http://www.turbodb.de downgeloadet werden

·Tabellen erzeugen  
·Tabellen ändern  
·Tabellen löschen  
·Tabellenstrukturen darstellen  
·Indexe für eine Tabelle erstellen  
·Indexe löschen  
·Tabellen und Index reparieren  

Beim Start des Programms wird das tdbwkb Prompt angezeigt, hier können Sie die verschiedenen Kommandos eingeben. Geben Sie help ein um eine Liste mit den möglichen Befehlen anzuzeigen.

Hier das Beispiel eine tdbwkb Sitzung, das die verfügbaren Features demonstriert.

home/usr1>tdbwkb
dataWeb Turbo Database Workbench Version 1.0
Copyright (c) 2000 dataWeb GmbH, Aicha, Germany
Homepage http://www.dataweb.de, Mail info@dataweb.de
Type 'help' to get a list of available commands.
tdbwkb> help
  Abbreviations are not allowed. The commands are:
  altertable    Modifies an existing table.
  bye           Ends the tdbwkb session.
  cd            Changes the current directory.
  debug         Toggles debug mode.
  delindex      Deletes an index from a table.
  deltable      Deletes all files of a table.
  help          Prints this list of commands.
  newindex      Creates a new index for a table.
  newtable      Creates a new TurboDB table.
  pwd           Prints current working directory.
  repair        Rebuilds a table and all its indexes.
  tableinfo     Shows the Beschreibung of a table.
  Type help <cmd> to get more specific help for a command.
tdbwkb> newtable animals S40Name,A'Land,Water,Air'Area,PImage,MDescription,N'Name'RecordId
Creating table animals.dat with these columns:
  1 S40  Name
  2 A    Area, Values = Land,Water,Air
  3 P    Image
  4 M    Beschreibung
  5 N    RecordId
tdbwkb> tableinfo animals
Retrieving structure of table animals.dat...
Table columns:
  1 S40  Name
  2 A    Area, Values = Land,Water,Air
  3 P    Image
  4 M    Beschreibung
  5 N    RecordId
Indexes:
animals.inr                   RecordId:4
animals.id                    Name:40
tdbwkb> altertable animals n2=S40Family
Restructuring table animals.dat to these columns:
  1 S40  Name
  2 S40  Family
  3 A    Area, Values = Land,Water,Air
  4 P    Image
  5 M    Beschreibung
  6 N    RecordId
tdbwkb> newindex animals byfamily Family,Name
tdbwkb> tableinfo animals
Retrieving structure of table animals.dat...
Table columns:
  1 S40  Name
  2 S40  Family
  3 A    Area, Values = Land,Water,Air
  4 P    Image
  5 M    Beschreibung
  6 N    RecordId
Indexes:
animals.inr                   RecordId:4
animals.id                    Name:40
byfamily.ind                  Family:40, Name:40