| # | Line 544 | Line 544 | end; | |
|---|---|---|
| 544 | function TAccess_OUP_ADB.GetRawsForType(RawType: String): TRawDataList; | |
| 545 | var | |
| 546 | i: Integer; | |
| 547 | – | rawlist: TRawDataList; |
| 547 | begin | |
| 548 | SetLength(Result, 0); | |
| 549 | FQuery.SQL.Text := 'SELECT [src_id],[src_link_offset],[name],[size],[sep] FROM rawmap ' + | |
| 550 | < | 'WHERE [type]="' + RawType + '" ORDER BY src_id ASC, src_link_offset ASC;'; |
| 550 | > | 'WHERE [type]="' + RawType + '" and [size]>0 ORDER BY src_id ASC, src_link_offset ASC;'; |
| 551 | FQuery.Open; | |
| 552 | if FQuery.RecordCount > 0 then | |
| 553 | begin | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |