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 5,055 public repositories matching this topic...
-
Updated
Aug 17, 2020 - TypeScript
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 17, 2020 - C++
-
Updated
Jul 20, 2020 - Java
-
Updated
Aug 10, 2020 - JavaScript
-
Updated
Apr 3, 2020 - Go
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
Jul 28, 2020 - JavaScript
Given that we support CURRENT_TIMESTAMP
, the lack of CURRENT_DATE
feels like an omission. While you can hack it with date(now)
, I keep finding myself wishing there was a direct way to reference this. Given that now
means CURRENT_TIMESTAMP
, I think there's precedent for today
meaning CURRENT_DATE
. This is supported by all backends we support (and is in the ISO standard I believe).
-
Updated
Aug 11, 2020 - PHP
-
Updated
Jul 30, 2020 - Swift
Originally posted by @dimitri in https://github.com/dimitri/pgloader/timeline
That's good thinking, and I think that's relevant for another PR. The PR introducing the statistics singleton should also take care of the following bits of refactoring of the code:
- the singleton is named “state” as I initially though I would update the global state of the migration to be able to know
For those using the AppImage and not installing normally into their app tray it'd be nice to provide a .desktop file that points to their local copy of the app image.
A PR here should include:
- The text of the .desktop file, along with locations to sub out the
path
of the app image - Instructions on where to put the .desktop file inside the user's home directory
- Some manual testing
-
Updated
Jun 19, 2020 - Go
-
Updated
Aug 2, 2020 - PHP
Running cargo sqlx prepare
from a directory that isn't actually a cargo project, when .env
exists in the same directory as would usually be the case and DATABASE_URL
isn't in the environment, complains about the missing DATABASE_URL
and exits before notifying the user that they are running prepare in the wrong directory. It should probably check for the existence of Cargo.toml
or (total
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