You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 21, 2026. It is now read-only.
Describe the bug
When making requests to the database via the OuterbaseConnection or the CloudflareD1Connection and an error is returned from either of those connections, the error never propagates back to the caller. If you look at the code null is actually hard coded as the return value there.
To Reproduce
Fire a query that is doomed to fail
Log out the error from const { data, error } = db....
Always see null for error
Expected Result is to see an error object.
Expected behavior
Return an error in a standardized ConnectionError object similar to the type below:
Describe the bug
When making requests to the database via the
OuterbaseConnectionor theCloudflareD1Connectionand an error is returned from either of those connections, the error never propagates back to the caller. If you look at the codenullis actually hard coded as the return value there.To Reproduce
const { data, error } = db....nullfor errorExpected Result is to see an error object.
Expected behavior
Return an error in a standardized
ConnectionErrorobject similar to the type below:Screenshots
N/A
Desktop (please complete the following information):
N/A
Smartphone (please complete the following information):
N/A
Additional context
N/A