This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
pascal
/
freepascal.compiler
mirror of
https://gitlab.com/freepascal.org/fpc/source.git
Xem
2
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
* Do not return empty fieldlist when generating SQL
Michaël Van Canneyt
2 tháng trước cách đây
mục cha
ec8887baf2
commit
f406c2400b
1 tập tin đã thay đổi
với
2 bổ sung
và
0 xóa
Split View
Hiển thị tình trạng sai khác
2
0
packages/fcl-web/src/restbridge/sqldbrestschema.pp
+ 2
- 0
packages/fcl-web/src/restbridge/sqldbrestschema.pp
Xem Tập Tin
@@ -1427,6 +1427,8 @@ begin
Res:=Res+Term;
end;
end;
+ if Res='' then
+ Res:='*';
Result:=Res;
end;