|
|
|
|
|
by spullara
1815 days ago
|
|
If, like me, you at some point need to support Oracle coming from Postgres there are a few annoyances you should be aware of: - No boolean type. Different folks will choose T/F chars, Y/N chars or 0/1 integers.
- Strings are not nullable. An empty string and a null string are the same thing.
- Date also has time. By default, you end up with some very annoying bugs. Expect to actually change the way some of your columns work. |
|
I'm just guessing but a CHAR would be 4 byte if it's Unicode and an INTEGER also right?
So you're telling me there's really no way to store just one or a few bits?