delphi菜鸟,如何添加access数据库中的表table1中的记录呢

delphi初学者,怎么添加access数据库中的表table1中的记录呢?
在delphi中,如果用ADO的话,添加一条记录需要用到那些组件呢?把SQL语句写到那里去呢?万分迷茫,期待您的答案!

------解决方案--------------------
var
vsql: string;
///
begin
vsql:= 'insert into table1 values (1, ' ' 'b ' ' ', ' ' 'd ' ' ') ';
with adocommand do
begin
connection:= adoconnection1;
commondtype:= cmdtext;
commondtext:= vsql;
try
Execute;
except
end;

end;
end;