-
Updated
Nov 4, 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,626 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 4, 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:
 based on current mode
- Need to add an interface option for Font type (same as other interfaces) for Sans, Serif, Mono. Should we have two? One for editor and one for preview? I think both should default to
sans(like this GitHub editor). - All WYSIWYG CSS should get copied from the
-
Updated
Sep 30, 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
Nov 4, 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
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
Nov 2, 2021 - Go
-
Updated
Apr 3, 2020 - Go
-
Updated
Oct 25, 2021 - JavaScript
-
Updated
Oct 22, 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
Nov 4, 2021 - Swift
-
Updated
Nov 3, 2021 - Python
-
Updated
Oct 10, 2021 - PHP
Is your feature request related to a problem? Please describe.
Currently for v5 there's no way to specify seeder config options if you choose to use .env MIKRO_ORM_* as default config.
Describe the solution you'd like
Add MIKRO_ORM_SEEDER_PATH and MIKRO_ORM_SEEDER_DEFAULT_SEEDER
Describe alternatives you've considered
Not sure
Additional context
N/A
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: