Giter VIP home page Giter VIP logo

Comments (4)

MoridinBG avatar MoridinBG commented on June 12, 2024 1

Hi @grundoon I am using postgres-kit directly. The fluent-kit example is just what I needed! I finally have working transactions!

The nested simpleQueries did it. I was trying to make it work with execute which didn't work.

It would be really nice if transaction support ends up in sql-kit or postgres-kit at least. Fluent can then build on top of that, while non-fluent clients can use transactions too.

from postgres-kit.

grundoon avatar grundoon commented on June 12, 2024

Hi @MoridinBG – It looks like documentation is still pending (vapor/docs#531), though (if using Fluent) you can see the basic concepts of creating, nesting and testing whether you're within one in https://github.com/vapor/fluent-kit/blob/master/Sources/FluentBenchmark/Tests/TransactionTests.swift

from postgres-kit.

bordunosp avatar bordunosp commented on June 12, 2024

U can take a connect from the pool and do whatever you want with it.
And at the end, return back to the pool

let pool = EventLoopGroupConnectionPool(source: ...)

let conn = try pool.requestConnection().wait(); defer {
    pool.releaseConnection(conn)
}

_ = try conn.query("BEGIN;").wait()
    
do {
    _ = try conn.query("UPDATE ...").wait()
    _ = try conn.query("UPDATE ...").wait()
    _ = try conn.query("COMMIT;").wait()
} catch let error {
    _ = try conn.query("ROLLBACK;").wait()
    throw error
}

from postgres-kit.

0xTim avatar 0xTim commented on June 12, 2024

Closing since transactions are supported

from postgres-kit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.