Posts by Andrea Ferreira Garcia • 45 points
4 posts
-
-1
votes1
answer50
viewsQ: function that returns driver mapping letter in Delphi
I need a function or command on Delphi returning the user drivers mapping letter. example: Z:, U:
delphiasked Andrea Ferreira Garcia 45 -
0
votes3
answers1024
viewsQ: Handling of sql temporary tables in Delphi
Good afternoon I create in Delphi a Sql temporary table, that is, it does not exist physically. I can even record data to it, but I can’t put the information in a dbgrid: 1) I believe the table so:…
-
1
votes3
answers464
viewsQ: drop table with temporary table giving error
qryCIDtemp.SQL.Text := 'drop table if exists #tempCID'; //apaga a tabelas temporária Delphi returns me the following message at runtime: Invalid use of keyword Token: if Line Number: 1. If anyone…
-
2
votes3
answers658
viewsQ: Compare 2 field-to-field tables
I have two tables with equal fields. Table A and B I need to compare the contents of the two tables field by field. I am using the following code to find records that have some different field, but…