เป็นรายงาน เอกสารติดตามผป.ครับ สั่งเรียกรายงานขึ้นมา ก็ out of memory ครับ
แต่ถ้าเปิดที่ report designer ก็ไม่ช้าครับ ไม่ทราบว่าต้องแก้ไขคำสั่งอย่างไรครับ
ขอบคุณครับ
hn := InputQuery('กรุณาใส่เลข HN', hn);
if (hn = '')then
repeat
ShowMessage('กรุณาใส่เลข HN');
hn := InputQuery('กรุณาใส่เลข HN', hn);
until(hn <> '');
ChangeReportSQL('select p.hn,concat(p.pname,p.fname," ",p.lname) as pt_name, '+
'p.cid,p.birthday,p.informname,p.informaddr,p.hometel, '+
'concat(p.addrpart," ม. ",p.moopart," ต. ",t3.name," อ. ",t2.name," จ. ",t1.name) as fulladdress '+
'from patient p '+
'left outer join thaiaddress t1 on t1.chwpart=p.chwpart and '+
't1.amppart="00" and t1.tmbpart="00" '+
'left outer join thaiaddress t2 on t2.chwpart=p.chwpart and '+
't2.amppart=p.amppart and t2.tmbpart="00" '+
'left outer join thaiaddress t3 on t3.chwpart=p.chwpart and '+
't3.amppart=p.amppart and t3.tmbpart=p.tmbpart '+
'where p.sex = "1" and p.hn in ('+hn+') '+
'group by p.hn '+
'order by p.hn limit 1 ');