Ver Mensaje Individual
  #4  
Antiguo 22-02-2015
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.039
Reputación: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
Cita:
How to set the Firebird date format or why doesn't dd/mm/yyyy work?


In general, you shouldn't ever be using the strings user entered directly in your queries. Convert the string into some kind of Date object and pass it to Firebird as query parameter.

If you still wish to use strings, here are the formats that Firebird supports:

DD.MM.YYYY
MM/DD/YYYY
YYYY-MM-DD

In all of them, year can be written with 2 or 4 digits. The same format is also used in timestamps.

Additionally, you can use the format where months are represented by 3-character name (JAN,FEB,MAR...) instead of number (01,02,03...):

DD-MMM-YYYY
http://www.firebirdfaq.org/faq137/
Responder Con Cita