karlseguin / pg.zig

Native PostgreSQL driver / client for Zig
MIT License
158 stars 9 forks source link

Will making a query block the main thread? #16

Closed FaisalAhmedAlghamdi closed 1 month ago

karlseguin commented 1 month ago

Yes, it's blocking. I'm not sure what you mean by "main thread" though. A call to conn.query(...) will block the caller...the library has no concept of threads, or a main thread.