Belchior Oliveira

Results 9 issues of Belchior Oliveira

References - https://www.postgresql.org/docs/current/sql-altertable.html - https://sqlite.org/syntax/alter-table-stmt.html - https://dev.mysql.com/doc/refman/8.0/en/alter-table.html

enhancement

References - https://www.postgresql.org/docs/current/sql-dropindex.html - https://sqlite.org/syntax/drop-index-stmt.html

enhancement

References - https://www.postgresql.org/docs/current/sql-droptable.html - https://sqlite.org/syntax/drop-table-stmt.html

enhancement

References - https://www.postgresql.org/docs/current/sql-createindex.html - https://sqlite.org/syntax/create-index-stmt.html

enhancement

The [copy-paste](https://www.npmjs.com/package/copy-paste) depends on xclip in linux. Without this peer dependency the "Copy to clipboard" will not work. Maybe is interesting adds the command below in the doc ```sh sudo...

## Adds CreateIndex builder Builder API ```rust let query = sql::CreateIndex::new() // at least one of methods .create_index("users_name_idx") .create_index_if_not_exists("users_name_idx") .unique() .concurrently() // required methods .on("users") .column("name") // optional methods .only()...

documentation
enhancement

Adds MySQL syntax to Select builder ```toml # Cargo.toml sql_query_builder = { version = "2.x.x", features = ["mysql"] } ``` Basic API ```rust use sql_query_builder as sql; let query =...

documentation
enhancement

Adds MySQL syntax to Select builder ```toml # Cargo.toml sql_query_builder = { version = "2.x.x", features = ["mysql"] } ``` Basic API ```rust use sql_query_builder as sql; let query =...

documentation
enhancement

Adds a basic tool to measure performance

enhancement