Arquivo para Dezembro, 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 and domains. It lets you import, export, enter, edit, delete, query, browse your data. And some more …

To execute this program you need, beside the Firebird or InterBase database server, an apache webserver with php support.

Homepage: http://www.ibwebadmin.net/

Deixe um comentário

Alterar o valor de um generator

SET GENERATOR <NOME_DO_GENERATOR> TO <VALOR>

Comentários (1)

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 * from Clientes Where Morada containing ‘DO BRASIL’

Deixe um comentário