-
Updated
Aug 26, 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,192 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
Aug 27, 2021 - Vue
Bug description
When you run npx prisma init
everything executes without problems but the .gitignore
file is being overwritten with the following content mentioned in Issue #3400
How to reproduce
- Create an empty
npm
project - Create and add some contents to
.gitignore
- Run
npx prisma init
- Open the
.gitignore
file and notice it was overwritten
Expected beha
-
Updated
Aug 22, 2021 - C++
Preflight Checklist
- I have completed all Troubleshooting Steps.
- I'm on the latest version of Directus.
- There's no other issue that already describes my problem.
Describe the Bug
When I try to use "sor
-
Updated
Aug 18, 2021 - JavaScript
Hello Philip!
I think there is an issue with this part of the code of rqlite (store/store.go).
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
Feb 24, 2021 - Java
Consider the following code (using AsChangeset
instead / in addition to Insertable
produces the same error message):
#[derive(Insertable)]
struct Foo {
#[column_name = "type"]
ty: String
}
This code is wrong because eventhough the table has a column called type, the auto-generated schema.rs
file renames that to type_ to avoid using a keyword as an
-
Updated
Aug 26, 2021 - Go
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
-
Updated
Apr 3, 2020 - Go
-
Updated
Jun 4, 2021 - JavaScript
-
Updated
Aug 22, 2021 - PHP
Not a big deal since I usually have DATABASE_URL
in .env
anyways, but I just noticed in a new project before creating .env
that sqlx mig add init
failed with
error: The DATABASE_URL environment variable must be set
Which there doesn't seem to be a good reason for.
-
Updated
Aug 21, 2021 - PHP
-
Updated
Aug 24, 2021 - Swift
-
Updated
Aug 27, 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.
Created by D. Richard Hipp
Released August 17, 2000
- Website
- www.sqlite.org
- Wikipedia
- Wikipedia
Issue Description
What are you doing?
I am trying to strongly type my application using Typescript and Sequelize. I have noticed th