Posts by Léo Mees • 26 points
2 posts
-
1
votes2
answers580
viewsA: Extract Metadata from Firebird via Delphi
You can use the component IBExtract palette Ibexpress IBExtract1.ExtractObject(eoDatabase,'',[etDomain,etTable,etRole,etTrigger,etForeign,etIndex,etCheck]); TextoMetadata:= IBExtract1.Items.Text;…
-
0
votes4
answers79
viewsA: Find names in 2 different tables
Good Morning. Here’s what I’d do: SELECT adm_id, nome FROM administradores WHERE nome = '$nome' union SELECT user_id,nome FROM usuarios WHERE nome = '$nome' I believe it will work in any database…