Hallo Wissende!
Ich bräuchte mal bitte die Info, wie ich bestimmte Datenbankfelder in einer
Access-
DB anlegen kann. Ich weiss nun schon, wie es sich mit den folgenden verhält:
feldtyp:= ' counter'; //Autowert
feldtyp:= ' varchar'; //Text
feldtyp:= ' integer'; //Zahl
feldtyp:= ' longtext'; //Memo
feldtyp:= ' longbinary'; //Blob
DM.ADOQuery1.SQL.Add('ALTER TABLE '+tabelle+' ADD '+feldname+feldtyp);
DM.ADOQuery1.ExecSQL;
Ich benötige noch die Info für:
boolean
Datum/Uhrzeit
Währung
Gibt es sonst noch wichtige, die ich vergessen haben könnte???