Autor Beitrag
flankengott
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 67



BeitragVerfasst: Sa 04.10.08 17:09 
Hallo!

Ich hätte eine Frage.
Kann mir einer von euch sagen, wie man per Eingabemaske (einige Editfelder) Datensätze in meine Access-DB hinzufügen kannn?

Mfg
flankengott
Xion
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
EE-Maler
Beiträge: 1952
Erhaltene Danke: 128

Windows XP
Delphi (2005, SmartInspect), SQL, Lua, Java (Eclipse), C++ (Visual Studio 2010, Qt Creator), Python (Blender), Prolog (SWIProlog), Haskell (ghci)
BeitragVerfasst: So 05.10.08 09:37 
wenn du schon ne verbindung hast, dann so:

ausblenden Delphi-Quelltext
1:
2:
3:
Table1.Insert;
Table1.FieldByName('Testfeld').AsString:=Edit1.Text;
Table1.Post;

_________________
a broken heart is like a broken window - it'll never heal
In einem gut regierten Land ist Armut eine Schande, in einem schlecht regierten Reichtum. (Konfuzius)
flankengott Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 67



BeitragVerfasst: So 05.10.08 21:10 
danke für die rasche antwort. funktioniert super.

hast du zufällig noch eine ahnung, wie man in delphi via ado csv files importieren kann. so mit opendialog usw.

thx
flankengott