home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 8.ddi / SQLCOMMN.LOC < prev    next >
Encoding:
Text File  |  1992-09-15  |  4.5 KB  |  120 lines

  1. ; comment character is a semicolon.
  2. ;
  3. ; SAMPLE SQLCOMMN.LOC
  4. ;
  5. ;  This file is a sample.  It can be used to change
  6. ;  the default character formats for datetime and money that
  7. ;  DB-LIB performs when binding these dataypes to characters.
  8. ;  This file is optional.  If no such file is found, DB-LIB
  9. ;  simply uses its default formatting.
  10. ;
  11. ;  This file, for example, changes the date formatting
  12. ;  to display in year-month-day order, with a 24-hour clock.
  13. ;  It also causes money values to use a period as the thousands
  14. ;  separator and a comma as the decimal symbol.
  15. ;
  16. ;  EXAMPLE:
  17. ;      By default, issuing the query 
  18. ;                       'select getdate(),$9876543' 
  19. ;
  20. ;      from isql results in:
  21. ;
  22. ;       Feb 23 1992  1:34PM             9,876,543.00 
  23. ;
  24. ;      But, if this file is placed in the path,
  25. ;      the same query results in:
  26. ;
  27. ;       1992 Feb 23  13:34              9.876.543,00 
  28. ;
  29. ;
  30. ;
  31. ;  For this file to be used, it must be placed in the PATH
  32. ;  or for MS-Windows have its location defined in the
  33. ;  WIN.INI file like:
  34. ;
  35. ;   [SQLSERVER]
  36. ;    SqlLocalizationFile=C:\SQL\BIN\SQLCOMMN.LOC
  37. ;
  38. ;  The file is checked by an application program at the time of
  39. ;  dbinit().  If a file is found (or declared in WIN.INI), but it 
  40. ;  contains invalid entries, dbinit() will return NULL instead
  41. ;  of the DB-LIBRARY version string.  If no file is found or
  42. ;  declared, dbinit() returns the version string and default
  43. ;  formats are used.
  44. ;
  45. ; Currently 'shortmonths', 'dateformat', and
  46. ; 'timeformat' are the only entries used by DB-Library.
  47. ;
  48. ; 'months' and 'days' are reserved for future use.
  49. ; For additional datetime formatting, use the SQL Server
  50. ; convert() function.
  51. ;
  52. [file format]
  53.         ; left and right brackets will delimit section titles. 
  54.         ; Any special character, including the comment character 
  55.         ; and the section-title delimiters, may be interpreted 
  56.         ; literally by preceding them with the escape character. 
  57.         ; In addition, any line that ends with the escape character 
  58.         ; will be continued onto the next line.
  59.         version=4.2             ; First International Release 
  60.         list_separator=,        ; commas will separate the members of a list. 
  61.         escape=\                ; backslash is the escape symbol.
  62. [language] 
  63.         language=us_english
  64. [copyright]
  65.         copyright= "Microsoft Corporation.  Copyright 1992.\
  66.         Sybase, Inc. 6475 Christie Avenue, Emeryville, CA 94608
  67.         Copyright 1992"
  68.  
  69. [datetime] 
  70.         months= January,February,March,April,May,June,July, \
  71.         August,September,October,November,December
  72.  
  73.         shortmonths= Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep, \
  74.                 Oct,Nov,Dec
  75.  
  76.         ; The list of day-names must begin with the local equivalent of 
  77.         ; Monday, which is the first day of the week in most places. 
  78.         
  79.  
  80.         days=Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
  81.  
  82.         firstday = 1    ; Monday is the first day week. 
  83.  
  84.         ; The date format specifier consists of the 3 characters 
  85.         ; 'm', 'd', and 'y' in any order. The order of these characters 
  86.         ; determines the appearance of the month, day, and year in 
  87.         ; a datetime string. Each of the characters 'm', 'd', and 'y' 
  88.         ; must appear exactly once. 
  89.  
  90.         dateformat=ymd
  91.  
  92.         ; The time format specifier consists of the number "12" or "24", 
  93.         ; to designate the 12-hour or 24-hour time system. 
  94.         ; Use of 12-hour format includes an AM or PM designation.
  95.  
  96.         timeformat=24
  97. [money] 
  98.         ; The currency format specifier consists of two parts: 
  99.         ; This format is currently not used in DB-Library which
  100.         ; does not print currency symbol at all.  It is
  101.         ; reserved for future use.
  102.         ; 
  103.         ;       1) The letter "B" or "A", which means that the currency 
  104.         ;          symbol should appear before or after the amount, 
  105.         ;          respectively. 
  106.         ;
  107.         ;       2) The currency symbol. It may consist of more than one 
  108.         ;          character (e.g. "kr" for kroner). If the currency 
  109.         ;          symbol is unavailable on your keyboard, it may 
  110.         ;          be described as a hexadecimal character constant 
  111.         ;          (e.g. 0x23 or 0xe322). 
  112.         ;
  113.         ; decimal separator should be enclosed in single quotes.
  114.         ;
  115.         ; thousand separator should be enclosed in single quotes.
  116.     
  117.         moneyformat=B,$ 
  118.         decimal_sep=',' 
  119.         thousand_sep='.'
  120.