本人想用delphi和SQL做个简单的应用系统

2024-12-18 21:10:18
推荐回答(2个)
回答1:

使用adoconnection连接你的数据库,然后adoquery连接这个adoconnection
之后想做的数据库操作,就很简单的了
with adoquery1 do
begin
close;
sql.text := 'select count(*) from a inner join b on a.id=b.guid'
try
open;
if fields[0]=0 then
showmessage('关联无效');
except
end;
close;
sql.text := 'delete from c where c.id=2';
try
i := exercute;//好像是这么写的,呵呵到时候ctrl+空格或ctrl+鼠标左键确认下
if i>0 then
showmessage('删除了'+inttostr(i)+‘行');
except
end;
end;

回答2:

1.什么数据库?
2.表结构是什么?
3.要实现的功能?