-
-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support encoding, and collation for database, table, and column #289
Comments
Hi @milkcocoa, thanks for the feature request. If I understand correctly, there are two separate issues here: 1: Configuring character set for a given MySQL connection.When connecting to a MySQL server, the client must send the default character set it wishes to use. This currently defaults to 2: Configuring character set for database, tables, and columns.I'm assuming you are using Fluent here since MySQLKit itself (built on SQLKit) does not explicitly support migrations (although you could implement them). DatabaseFluent is not responsible for creation of the database. Unless I'm mistaken, choosing a database-wide character set should be handled when you create the database. If you use Docker for example, you could configure that like so: https://stackoverflow.com/questions/45729326/how-to-change-the-default-character-set-of-mysql-using-docker-compose TableFluent is responsible for creating tables. There is currently no way to specify character set or collate using For example: import FluentSQL
import MySQLKit
let builder = database.schema("planets").id()
if database is MySQLDatabase {
// The underlying database driver is MySQL.
builder.constraint(.sql(raw: "CHARACTER SET charset_name"))
builder.constraint(.sql(raw: "COLLATE collation_name"))
} else {
// The underlying database driver is _not_ MySQL.
}
builder.create() ColumnThere is currently no way to specify character set or collate using Fluent. As a workaround, you can use custom SQL here, too. import FluentSQL
import MySQLKit
let builder = database.schema("planets").id()
if database is MySQLDatabase {
// The underlying database driver is MySQL.
builder.field(
"name",
.string,
.required,
.sql(raw: "CHARACTER SET charset_name"),
.sql(raw: "COLLATE collation_name")
)
} else {
// The underlying database driver is _not_ MySQL.
builder.field("name", .string, .required)
}
builder.create() Since the concept of CHARACTER SET / COLLATE is unique to MySQL, it probably doesn't make sense to add these options to Fluent itself. Unless the other databases Fluent supports have similar things that I'm not aware of. However, some things we could do are:
if database is MySQLDatabase {
// The underlying database driver is MySQL.
builder.field("name", .string, .required, .mysql(characterSet: .utf8mb4))
} Let me know if this makes sense and then we can split out these issues into their respective repos. |
Hi @tanner0101, thanks for replying to my request, and your understand is correct. There are two separate issues. For the first issue, if For the second, I think Database issue is resolved by the first connection issue. About Table, and Column, it makes sense that Fluent doesn't have the Fluent-wide resolution, and I understand the workarounds. I'm grad that the documentation has the examples. Moreover, if Fluent has convenience APIs, it is great useful. |
@milkcocoa sounds good. Do you want to open the separate issues? 1: Configuring character set for a given MySQL connection (vapor/mysql-nio first). Also let me know if you want to provide PRs. Otherwise I will grab them eventually. Thanks! |
OK. I've split this into vapor/mysql-nio#55 and vapor/fluent-mysql-driver#194. Also I'll take a look at the codes, and provide PRs if I can. |
Hi! MySQL supports encoding, and collation for each database, table, and column. Is there any plan to support them?
For example, in Ruby on Rails,
database.yml
application-wide configuration sets the database encoding, and collation, and in the migration file,option
parameter of thecreate_table
method sets the table ones, and also each column hasencoding
, andcollation
option to set them.I want the database configuration, and the option for each column at least, because I don't like to depend on the MySQL system configurations, and a column collation particularly depends on its use-case because MySQL collation has some issues on the emojis used or the Japanese environment.
You can see the detail of that issue at the following URL.
https://bugs.mysql.com/bug.php?id=76553
So, considering the Japanese environment, I'd like to use different collations between email, and texts.
The text was updated successfully, but these errors were encountered: