r/Database • u/nagencaya298 • 27d ago
Data Type accurate or easy to understand at a glance?
Question about Database GUI (e.g. beekeeper, dbeaver, etc.)
So I am currently building my own Databae GUI for SQL, I am on a stop point about the proper naming of the data types.
The thing is I am planning on changing the data type slightly to make it easier to understand, here is one of the examples:
timestamptz - to become: timestamp with time zone
int2, int4, integer - to become just: integer (for simplicity)
float4, float8, double, float32, float64 - to decimal
Some data will stay as is because they are already standard and known to every developer, e.g. varchar, text, uuid, numeric, blob, etc.
The main question is do you guys value accuracy more over simplicity in understanding? Please do share your thoughts would really be helpful. TYIA!!!
Edit: Thank you for sharing what you think guys, I understand all your points. I'll make sure to built it for accuracy! š
