GpSQLBuilder icon indicating copy to clipboard operation
GpSQLBuilder copied to clipboard

Simple runtime SQL query builder for Delphi

Results 2 GpSQLBuilder issues
Sort by recently updated
recently updated
newest added

hello, i need to create sql with paramater value. like below INSERT INTO tenant (tenant_name, notes) VALUES (:tenant_param, :notes_param) can the sql builder create the values part without quotes ?...

ClearAll and Select.Clear does not clear qualifiers(First, Skip, Distinct). Proposed change in GpSQLBuilder.AST.pas: ``` procedure TGpSQLSelect.Clear; begin Columns.Clear; TableNames.Clear; end; ``` to ``` procedure TGpSQLSelect.Clear; begin Columns.Clear; TableNames.Clear; Qualifiers.Clear; end;...