0
I need to save a link in the database, which in the case is Mysql, I was using VARCHAR(255), but I easily noticed some of the links stored exceeded 255 characters, what kind of data can I use in the database to store this information? I believe it should support up to 400 characters, to ensure
Just one remark, if you have no reason to cut back in 2048, setting 64k spends exactly the same space on db (+ real content). Up to 65535 bytes are spent only 2 bytes more than the content itself. More than that, only if it is TEXT
– Bacco
@Bacco Verdade, boa!
– Guilherme Nascimento