On 11/13/19 9:51 AM, blackfalconsoftw...@outlook.com [firebird-support]
wrote:
>  
> Thank you Anne, for your succinct comments regarding the differences
> between the efficiencies of a CHAR and VARCHAR field definitions.
>
> Human observation cannot actually elicit any observable effects
> between the two. 
>
> However, internally, the CHAR field definition is more efficient as
> the database does not have to perform any field size calculations at
> the moment that data is being updated to a VARCHAR field.  Again, this
> is not noticeable to a user unless the data that is being updated into
> a VARCHAR field is quite large.
>
> Steve Naidamast
> Sr. Software Engineer

By the SQL standard, there are some noticeable effects. CHAR is defined
as a fixed width, so data is padded with blanks to reach that width, and
then the blanks are removed on retrieval. Because of this, a CHAR field
can not store a value with trailing blanks. On the other hand, since
VARCHAR doesn't need to pad the field, it doesn't need to trim trailing
blanks, so the field CAN store data with trailing blanks.

Firebird might not implement this distinction since it doesn't need to
pad CHAR fields.

-- 
Richard Damon

        • Re:... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
        • [fi... blackfalconsoftw...@outlook.com [firebird-support]
        • Re:... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
        • Re:... Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
        • Re:... blackfalconsoftw...@outlook.com [firebird-support]
        • Re:... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
        • Re:... blackfalconsoftw...@outlook.com [firebird-support]
        • Re:... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
        • Re:... Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
    • Re: [firebi... Ann Harrison aharri...@ibphoenix.com [firebird-support]
  • Re: [firebird-su... Richard Damon rich...@damon-family.org [firebird-support]
    • Re: [firebi... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
    • [firebird-s... Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
  • Re: [firebird-su... Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
    • Re: [firebi... blackfalconsoftw...@outlook.com [firebird-support]
      • Re: [fi... Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
      • Re: [fi... Mark Rotteveel m...@lawinegevaar.nl [firebird-support]

Reply via email to