diff --git a/cmd/jet/main.go b/cmd/jet/main.go index 8368f70..7e8e299 100644 --- a/cmd/jet/main.go +++ b/cmd/jet/main.go @@ -42,7 +42,7 @@ var ( ) func init() { - flag.StringVar(&source, "source", "", "Database system name (PostgreSQL, MySQL, MariaDB or SQLite)") + flag.StringVar(&source, "source", "", "Database system name (postgres, mysql, mariadb or sqlite)") flag.StringVar(&dsn, "dsn", "", `Data source name. Unified format for connecting to database. PostgreSQL: https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING @@ -59,9 +59,9 @@ func init() { flag.StringVar(&user, "user", "", "Database user. Used only if dsn is not set.") flag.StringVar(&password, "password", "", "The user’s password. Used only if dsn is not set.") flag.StringVar(&dbName, "dbname", "", "Database name. Used only if dsn is not set.") - flag.StringVar(&schemaName, "schema", "public", `Database schema name. Used only if dsn is not set. (default "public") (ignored for MySQL and MariaDB)`) + flag.StringVar(&schemaName, "schema", "public", `Database schema name. Used only if dsn is not set. (default "public")(PostgreSQL only)`) flag.StringVar(¶ms, "params", "", "Additional connection string parameters(optional). Used only if dsn is not set.") - flag.StringVar(&sslmode, "sslmode", "disable", `Whether or not to use SSL. Used only if dsn is not set. (optional)(default "disable") (ignored for MySQL and MariaDB)`) + flag.StringVar(&sslmode, "sslmode", "disable", `Whether or not to use SSL. Used only if dsn is not set. (optional)(default "disable")(PostgreSQL only)`) flag.StringVar(&ignoreTables, "ignore-tables", "", `Comma-separated list of tables to ignore`) flag.StringVar(&ignoreViews, "ignore-views", "", `Comma-separated list of views to ignore`) flag.StringVar(&ignoreEnums, "ignore-enums", "", `Comma-separated list of enums to ignore`) @@ -93,7 +93,7 @@ func main() { $ jet -dsn=postgresql://jet:jet@localhost:5432/jetdb -schema=dvds -path=./gen $ jet -source=postgres -dsn="user=jet password=jet host=localhost port=5432 dbname=jetdb" -schema=dvds -path=./gen $ jet -source=mysql -host=localhost -port=3306 -user=jet -password=jet -dbname=jetdb -path=./gen - $ jet -source=sqlite -dsn="file://path/to/sqlite/database/file" -schema=dvds -path=./gen + $ jet -source=sqlite -dsn="file://path/to/sqlite/database/file" -path=./gen `) }