hallo,
hab auch gerade vor 3 wochen angefangen, 'n bisschen mit delphi und
access rumzuprobieren. das forum hier is dafür echt klasse. kann dir auch noch 'n buch empfehlen (so zum einstieg), falls du die möglichkeit hast irgendwo eins auszuleihen: datenbankprogrammierung mit borland delphi 6 / isbn 3-446-21736-3
1. du brauchst ne adocommand-komponente
als connection string gibst du folgendes ein:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\test.mdb
2. button
Code:
procedure TForm.Button1Click(Sender: TObject);
var a,b,c : String;
begin
a := Edit1.Text;
b := Edit2.Text;
c := Edit3.Text;
ADOCommand1.CommandType := cmdText;
ADOCommand1.CommandText := 'INSERT INTO Tabellenname(Spalte1,Spalte2,Spalte3) VALUES ('+QuotedStr(a)+','+QuotedStr(b)+','+QuotedStr(c)+')';
ADOCommand1.Execute;
end;
also bei mir funktioniert's so, hoffe dir hilft's weiter...
mfg jan