firebirdpt.wordpress.com
Windows Vista, erro ao abrir Control Panel após instalação de Firebird | FIREBIRD PT
https://firebirdpt.wordpress.com/2009/02/01/windows-vista-erro-ao-abrir-control-panel-apos-instalacao-de-firebird
Windows Vista, erro ao abrir Control Panel após instalação de Firebird. Fevereiro 2009 às 1:42 · Filed under Truques e Dicas. Depois de instalar Firebird, o aacesso ao control panel comea crashar. Remover ficheiro: Windows System32 Firebird2Control.cpl. Control PAnel applet Aplication do Firebird. 8220;firebird2control.cpl is a FB2Control belonging to Firebird Control Panel Applet from IBPhoenix”. Deixar uma Resposta Cancelar resposta. Escreva o seu comentário aqui. O endereço nunca será tornado público).
firebirdpt.wordpress.com
Refreshing a SOAP WSDL import file with Delphi | FIREBIRD PT
https://firebirdpt.wordpress.com/2008/09/13/refreshing-a-soap-wsdl-import-file-with-delphi
Refreshing a SOAP WSDL import file with Delphi. Setembro 2008 às 23:36 · Filed under Truques e Dicas. 183;Com as etiquetas Delphi. It works pretty well, but if you need to refresh that file due to changes in the web service, you don’t need to use that wizard to update the file. There is a command line tool that will generate a new output file from a specificied WSDL. This tool is named WSDLImp.exe, and is located in the bin folder of your Delphi installation. The typical syntax is. That will generate a f...
firebirdpt.wordpress.com
Extrair parte de um campo Data (Datepart em Firebird) | FIREBIRD PT
https://firebirdpt.wordpress.com/2009/01/14/extrair-parte-de-um-campo-data-datepart-em-firebird
Extrair parte de um campo Data (Datepart em Firebird). Janeiro 2009 às 2:24 · Filed under Truques e Dicas. Extract(Day From current date). Extract(Month From current date). Extract(Year From current date). CURRENT DATE CURRENT TIMESTAMP. 13012009 13.01.2009 19:28. Extract(Day From current date). Extract(Month From current date). Extract(Year From current date). Rel="bookmark" title="Permanent link to Extrair parte de um campo Data (Datepart em Firebird)" class="permalink" Permalink. 3 Comentários ».
firebirdpt.wordpress.com
How to get the Firebird server date and time? | FIREBIRD PT
https://firebirdpt.wordpress.com/2009/01/14/how-to-get-the-firebird-server-date-and-time
How to get the Firebird server date and time? Janeiro 2009 às 2:17 · Filed under Truques e Dicas. There are two variables available, CURRENT DATE which returns the current date and CURRENT TIMESTAMP which returns date and time. You can use those in SQL statements:. Insert into t1 values(10, CURRENT TIMESTAMP);. To query the current time, use this:. Select current date, current timestamp. You need to select from something and rdb$database is a convenient one-row table that is present in each database.
firebirdpt.wordpress.com
Case sintaxe | FIREBIRD PT
https://firebirdpt.wordpress.com/2008/12/04/case-sintaxe
Dezembro 2008 às 3:57 · Filed under Manuais. WHEN … THEN. WHEN … THEN. WHEN … THEN. Rel="bookmark" title="Permanent link to Case sintaxe" class="permalink" Permalink. Deixar uma Resposta Cancelar resposta. Escreva o seu comentário aqui. Preencha os seus detalhes abaixo ou clique num ícone para iniciar sessão:. O endereço nunca será tornado público). Está a comentar usando a sua conta WordPress.com ( Log Out. Está a comentar usando a sua conta Twitter ( Log Out. Notify me of new comments via email.
firebirdpt.wordpress.com
FIREBIRD PT | Firebird weblog… para utilizadores de Firebird RDBMS – FIREBIRD`IT WITH US | Página 2
https://firebirdpt.wordpress.com/page/2
WSDLImporter erros de acentuação. Setembro 2008 às 23:16 · Filed under Truques e Dicas. Ao consumir em Delphi win32 Webservices escritos em Delphi .Net 1.1(e noutras plataformas também), podem ocorrer erros relacionados com caracteres acentuados e cedilhados. Por exemplo ao tentar enviar este tipo de caracteres, estes podem não ser interpretados e aparecer no seu lugar outros símbolos (? Para o fazer devemos explicitamente declarar o uso de um encoding no Header do SOAP Envelope. No HTTPRio:. Ignore : -i...
firebirdpt.wordpress.com
How to calculate hours, minutes or seconds between two time values? | FIREBIRD PT
https://firebirdpt.wordpress.com/2009/01/14/how-to-calculate-hours-minutes-or-seconds-between-two-time-values
How to calculate hours, minutes or seconds between two time values? Janeiro 2009 às 2:12 · Filed under Truques e Dicas. If you have time values, just subtract them, and you’ll get the interval length in seconds:. Select end time – start time. If you want to get minutes, divide the result by 60, and if you want hours by 3600. If you have timestamps instead of times, the difference is in days, so you if you want seconds, you need to multiply the value by 60 * 60 * 24. Deixar uma Resposta Cancelar resposta.