v6.90.0.57 - bcb 2010 - character width in crdbgird
Posted: Thu 07 Jun 2012 12:47
I have a table people:
lastname varchar2(50),
firstname varchar2(50).
SELECT * from people in a crdbgrid=> Width of columns is fine.
However, alter table people modify (lastname varchar2(50 char), firstname varchar2(50 char));
=> Then run same app. The width of both columns has been multiplied by 4. Is it possible to avoid this? Even if encoding takes 4 bytes, only one char is displayed, so width should not change!
Regards.
lastname varchar2(50),
firstname varchar2(50).
SELECT * from people in a crdbgrid=> Width of columns is fine.
However, alter table people modify (lastname varchar2(50 char), firstname varchar2(50 char));
=> Then run same app. The width of both columns has been multiplied by 4. Is it possible to avoid this? Even if encoding takes 4 bytes, only one char is displayed, so width should not change!
Regards.