-
Updated
Nov 19, 2021 - TypeScript
SQLite

SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.
Here are 7,700 public repositories matching this topic...
Sometimes it is needed to store compressed data in the DB. Unfortunately not all the DBs have built-in compression and FUSE compressed FSes are not available for every OS. So it may make sense to store compressed binary blobs in the DB.
Unfortunately when one sees them in DBeaver he sees them compressed, but often they are needed uncompressed. So it'd be nice to have a feature to decompress the
-
Updated
Nov 19, 2021 - Vue
Bug description
On windows, I run prisma format
and note the unusual file ending. The lines are all LF, but the very last line is CRLF.
This causes issue on my Linux CI where it formats it ending in LF's only, causing a diff to occur and the build to fail.
How to reproduce
- On windows do prisma format
- Open in HxD or similar
- See attached:
.
func (s *Store) Database(leader bool) ([]byte, error) {
if leader && s.raft.State() != raft.Leader {
return nil, ErrNotLeader
}
// Ensure only one snapshot can take place at once, and block all queries.
s.mu.Lock()
defer s.mu.Unlock()
f, err := ioutil.TempFile("", "rqlilte-snap-
-
Updated
Nov 20, 2021 - PHP
-
Updated
Oct 7, 2021 - Java
It looks like there are hints at connecting directly with a socket path https://github.com/beekeeper-studio/beekeeper-studio/blob/9ff3131030057364f31f3034677fc0f6a9bd48b5/src/lib/connection-provider.js#L23
But there does not appear to be anything in the UI to indicate
Setup
Versions
- Diesel: Latest master (b2c58897c39c519a946314bd5b63765d3af56204)
What are you trying to accomplish?
#[derive(Queryable, Selectable)]
#[table_name = "schema::xxx"]
pub struct WithField<T> {
pub field: i32,
#[diesel(embed)]
pu
-
Updated
Nov 19, 2021 - Go
-
Updated
Apr 3, 2020 - Go
-
Updated
Oct 25, 2021 - JavaScript
-
Updated
Nov 17, 2021 - PHP
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.
-
Updated
Nov 18, 2021 - Swift
-
Updated
Nov 19, 2021 - Python
-
Updated
Oct 10, 2021 - PHP
Is your feature request related to a problem? Please describe.
Problem: As a devops deploying on AWS I want to log without colors
Describe the solution you'd like
All highlighters should honor to the NO_COLOR environmental variable and make the output consistent to other libraries
Actual Behaviour
when using mikroorm inside nestjs framework, nestjs out
When creating a dump from OpenEdge (Progress) database, boolean fields will contain the following values:
- "yes" - true
- "no" - false
- "?" - null. I am assuming that everything else than yes/no is null here.
Created by D. Richard Hipp
Released August 17, 2000
- Website
- www.sqlite.org
- Wikipedia
- Wikipedia
Working on a project I ran into the documentation for customizing the Foreign Key.
The docs read: