quaint icon indicating copy to clipboard operation
quaint copied to clipboard

SQL Query AST and Visitor for Rust

Results 58 quaint issues
Sort by recently updated
recently updated
newest added

## Overview Needed for https://github.com/prisma/prisma-engines/pull/3088 **BREAKING**: - Removed begins_with, not_begins_with - Removed ends_into, not_ends_into - `.like` and `.not_like` now only renders ` LIKE `. The consequence is: - `.like` should...

I am getting a compilation error with Tiberius when using quaint in a workspace. Outside workspace, it works well without issue. The fix might be obvious, but I am having...

Similar to the existing `vendored-openssl` feature flag, this PR makes the `bundled` feature of rusqlite optional too. This allows swapping in different SQLite implementations and runtime-patching SQLite with `LD_PRELOAD`.

This PR enables Postgres `ltree` support in quaint. `ltree` is a Postgres column datatype that allows n-depth traversable trees to be used in filtering/querying rows. `ltree` is a native extension...

Make the impl for `From for Error` conditional on uuid feature flag being enabled. Due to this bug `quiant` doesn't currently compile if the `uuid` feature flag is disabled.

Fixes [this](https://github.com/prisma/quaint/issues/334).

This PR resorts some code and docs by applying some "order" to the query params and related code: 1. General database options 2. SSL Options 3. Connection related things (Timeout,...

Although the current wording is technically 100% correct, users are sometimes slightly confused and think that the pool is started with all these connections already open. This is of course...

- JSON serialization from decimal should be a string - Do not allow writing to a decimal field with floats, or a float field with decimals - API to cast...