1
1
<!-- doc/src/sgml/ecpg.sgml -->
2
2
3
3
<chapter id="ecpg">
4
- <title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title>
4
+ <title><application>ECPG</application> — Embedded <acronym>SQL</acronym> in C</title>
5
5
6
6
<indexterm zone="ecpg"><primary>embedded SQL</primary><secondary>in C</secondary></indexterm>
7
7
<indexterm zone="ecpg"><primary>C</primary></indexterm>
@@ -2989,7 +2989,7 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
2989
2989
<listitem>
2990
2990
<para>
2991
2991
<literal>%d</literal> - is replaced by the day of the month as a
2992
- decimal number (01- 31).
2992
+ decimal number (01– 31).
2993
2993
</para>
2994
2994
</listitem>
2995
2995
<listitem>
@@ -3025,7 +3025,7 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3025
3025
<listitem>
3026
3026
<para>
3027
3027
<literal>%e</literal> - is replaced by the day of month as a decimal
3028
- number (1- 31); single digits are preceded by a blank.
3028
+ number (1– 31); single digits are preceded by a blank.
3029
3029
</para>
3030
3030
</listitem>
3031
3031
<listitem>
@@ -3044,13 +3044,13 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3044
3044
<para>
3045
3045
<literal>%g</literal> - is replaced by the same year as in
3046
3046
<literal>%G</literal>, but as a decimal number without century
3047
- (00- 99).
3047
+ (00– 99).
3048
3048
</para>
3049
3049
</listitem>
3050
3050
<listitem>
3051
3051
<para>
3052
3052
<literal>%H</literal> - is replaced by the hour (24-hour clock) as a
3053
- decimal number (00- 23).
3053
+ decimal number (00– 23).
3054
3054
</para>
3055
3055
</listitem>
3056
3056
<listitem>
@@ -3061,37 +3061,37 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3061
3061
<listitem>
3062
3062
<para>
3063
3063
<literal>%I</literal> - is replaced by the hour (12-hour clock) as a
3064
- decimal number (01- 12).
3064
+ decimal number (01– 12).
3065
3065
</para>
3066
3066
</listitem>
3067
3067
<listitem>
3068
3068
<para>
3069
3069
<literal>%j</literal> - is replaced by the day of the year as a
3070
- decimal number (001- 366).
3070
+ decimal number (001– 366).
3071
3071
</para>
3072
3072
</listitem>
3073
3073
<listitem>
3074
3074
<para>
3075
3075
<literal>%k</literal> - is replaced by the hour (24-hour clock) as a
3076
- decimal number (0- 23); single digits are preceded by a blank.
3076
+ decimal number (0– 23); single digits are preceded by a blank.
3077
3077
</para>
3078
3078
</listitem>
3079
3079
<listitem>
3080
3080
<para>
3081
3081
<literal>%l</literal> - is replaced by the hour (12-hour clock) as a
3082
- decimal number (1- 12); single digits are preceded by a blank.
3082
+ decimal number (1– 12); single digits are preceded by a blank.
3083
3083
</para>
3084
3084
</listitem>
3085
3085
<listitem>
3086
3086
<para>
3087
3087
<literal>%M</literal> - is replaced by the minute as a decimal
3088
- number (00- 59).
3088
+ number (00– 59).
3089
3089
</para>
3090
3090
</listitem>
3091
3091
<listitem>
3092
3092
<para>
3093
3093
<literal>%m</literal> - is replaced by the month as a decimal number
3094
- (01- 12).
3094
+ (01– 12).
3095
3095
</para>
3096
3096
</listitem>
3097
3097
<listitem>
@@ -3124,7 +3124,7 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3124
3124
<listitem>
3125
3125
<para>
3126
3126
<literal>%S</literal> - is replaced by the second as a decimal
3127
- number (00- 60).
3127
+ number (00– 60).
3128
3128
</para>
3129
3129
</listitem>
3130
3130
<listitem>
@@ -3146,19 +3146,19 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3146
3146
<listitem>
3147
3147
<para>
3148
3148
<literal>%U</literal> - is replaced by the week number of the year
3149
- (Sunday as the first day of the week) as a decimal number (00- 53).
3149
+ (Sunday as the first day of the week) as a decimal number (00– 53).
3150
3150
</para>
3151
3151
</listitem>
3152
3152
<listitem>
3153
3153
<para>
3154
3154
<literal>%u</literal> - is replaced by the weekday (Monday as the
3155
- first day of the week) as a decimal number (1- 7).
3155
+ first day of the week) as a decimal number (1– 7).
3156
3156
</para>
3157
3157
</listitem>
3158
3158
<listitem>
3159
3159
<para>
3160
3160
<literal>%V</literal> - is replaced by the week number of the year
3161
- (Monday as the first day of the week) as a decimal number (01- 53).
3161
+ (Monday as the first day of the week) as a decimal number (01– 53).
3162
3162
If the week containing January 1 has four or more days in the new
3163
3163
year, then it is week 1; otherwise it is the last week of the
3164
3164
previous year, and the next week is week 1.
@@ -3173,13 +3173,13 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3173
3173
<listitem>
3174
3174
<para>
3175
3175
<literal>%W</literal> - is replaced by the week number of the year
3176
- (Monday as the first day of the week) as a decimal number (00- 53).
3176
+ (Monday as the first day of the week) as a decimal number (00– 53).
3177
3177
</para>
3178
3178
</listitem>
3179
3179
<listitem>
3180
3180
<para>
3181
3181
<literal>%w</literal> - is replaced by the weekday (Sunday as the
3182
- first day of the week) as a decimal number (0- 6).
3182
+ first day of the week) as a decimal number (0– 6).
3183
3183
</para>
3184
3184
</listitem>
3185
3185
<listitem>
@@ -3203,7 +3203,7 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
3203
3203
<listitem>
3204
3204
<para>
3205
3205
<literal>%y</literal> - is replaced by the year without century as a
3206
- decimal number (00- 99).
3206
+ decimal number (00– 99).
3207
3207
</para>
3208
3208
</listitem>
3209
3209
<listitem>
0 commit comments