petrol icon indicating copy to clipboard operation
petrol copied to clipboard

Petrol's an OCaml SQL API made to go FAST.

Results 7 petrol issues
Sort by recently updated
recently updated
newest added

Hello! I'm incredibly new to OCaml so if anything I've said here is completely wrong I apologize in advance. I recently started using Petrol and was having trouble with the...

Wondering if you are thinking there are any better options than this kind of idea? This let's users do: ```ocaml let table, fields = StaticSchema.declare_table schema ~name:"optional" ~constraints:[] (let open...

## Changes Resolves #2 This is more a POC to have something tangible to discuss. So I've made some changes to make development easier. See the notes section. The goal...

Hi! First off, really enjoying petrol. Thanks for the library. I was wondering if this would be a welcome addition to the library. I'm not necessarily 100% sold on using...

Not sure if it's a bug of me just misunderstanding how to use joins. Assuming the following tables: ```ocaml let (person, Expr.[id; name]) = StaticSchema.declare_table schema ~name:"person" Schema.[field "id" ~ty:Type.int;...

Hi there, thanks for this project. I'm personally using Core/Async and Postgres_async, I might try it but in the meantime, is it possible that Lwt specific code be well isolated...

It would be very helpful to relative newbies to OCaml, such as myself if you had a single complete example of using Petrol. For instance, you have: ``` (* ......