Skip to content
#

mariadb

Here are 1,902 public repositories matching this topic...

prisma
jasonkuhrt
jasonkuhrt commented Feb 6, 2021

I am intentionally making this issue specific but I assume it could be expanded to include much more of the API.

Problem

I do not have the entire Prisma Client API perfectly (let alone roughly) committed to memory.

When I go to use it to query for many results the operations tell me nothing about what and why they will do. I only have types to work with.

I don't want to open my br

AleVul
AleVul commented Mar 25, 2021

I have trouble using (or understanding how to use) sqlx::Type. I have derived it for a wrapper around a String.
As far as I understand, this should implement Encode and Decode traits for the wrapper type and as a consequence I should be able to pass an instance of the wrapper type to query! macro, but I get an error stating that the drivers expects an &str instead of the wrapper type.

shadeglare
shadeglare commented May 3, 2021

Can not insert an infinite (plus/minus) value into a double precision column in a postgres table (linq2db 3.3.0).
Seems linq2db don't quote those values according to the postgres documentation.

Output sql with infinite value for an insert query looks like

insert into some_table 
  (id, value)
values
  (1, Infinite),
  (2, -Infinite);

But must be

insert into some_t

Improve this page

Add a description, image, and links to the mariadb topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mariadb topic, visit your repo's landing page and select "manage topics."

Learn more