-
Updated
Oct 7, 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,467 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
Oct 7, 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
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
Setup a project with sqlite using the following up.sql:
create table example (
id integer not null primary key,
calculated integer generated always as (id*2)
);
Versions
- Rust: 1.56.0 nightly
- Diesel: 1.4.7
- Database: Sqlite
- Operating System Linux
Feature Flags
- diesel: sqlite
Problem Description
Sqlite does
-
Updated
Sep 28, 2021 - Go
-
Updated
Apr 3, 2020 - Go
-
Updated
Sep 8, 2021 - JavaScript
-
Updated
Sep 30, 2021 - PHP
Could you please make AnyKind derive Copy and Clone ?
That'd help me a lot. Now I need to create another enum and cannot use AnyKind directly.
-
Updated
Oct 1, 2021 - Swift
-
Updated
Sep 17, 2021 - PHP
-
Updated
Oct 5, 2021 - Python
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.
Is your feature request related to a problem? Please describe.
I'm interested in using MikroORM in a system where migrations and schema management are handled by another tool. I attempted to use the EntityGenerator
functionality but there doesn't appear to be any way to limit entity generation to specific schemas (in this case Postgres)
Describe the solution you'd like
I'd like to b
Created by D. Richard Hipp
Released August 17, 2000
- Website
- www.sqlite.org
- Wikipedia
- Wikipedia
Issue Description
While using model.bulkCreate, as we pass the options, an object which contains transaction, it comes modified after the execution
What are you doing?
We have called bulk