Default collation
When i am creating a new db or table the default charset is set to latin1 and default collation latin1_german_ci, is there a way to set my favorite default charset?
Yes, by editing the my.cnf / my.ini on the server you can set the global default collation, just can't remember the name of that ini section.
If you need that for one database and it's tables only, you can edit the database and specify the collation, which will then be the default for new tables you create afterwards.
If you need that for one database and it's tables only, you can edit the database and specify the collation, which will then be the default for new tables you create afterwards.
hmm.. i created new database with utf-8 charset, but still for all the new tables the default is utg-8.
It would be very handy option that you could set default charset, that would be independent of mysql configuration, somewhere in application settings, in further releases.
It would be very handy option that you could set default charset, that would be independent of mysql configuration, somewhere in application settings, in further releases.
Please login to leave a reply, or register at first.