Archive for December, 2007

IBWebAdmin

ibWebAdmin is a web frontend for the Firebird and InterBase database server. It makes the attempt to support all features which Firebird and SQL are offering. Even if this goal is unattainable, quite a few steps have already been done. By now ibWebAdmin has the basic functions for creating, deleting, modifying databases, tables, generators, triggers [...]

Alterar o valor de um generator

SET GENERATOR <NOME_DO_GENERATOR> TO <VALOR>

Pesquisa de texto

para efectuar uma pesquisa de texto pode-se usar o termo “like” ou o “Containing”.
O termo “like” é Case Sensitive o “containing” não é. No like para pesquisar qualquer texto que contenha “abc” terá que usar ” like ‘%abc%’ “com o containing não é necessário.
exemplo:
Select * from Clientes Where Morada Like ‘do Brasil%’
pode ser utilizado
Select * [...]