-
Updated
Aug 27, 2020 - Go
SQL
SQL stands for structured query language. It uses commands such as "select", "insert", "update", "delete". Some common relational database management systems that use SQL are: Oracle, MySQL, Microsoft SQL Server, PostgreSQL, etc.
Here are 458 public repositories matching this topic...
Issue description
Go 1.15 will introduce a new Validator interface, which may be implemented by Conn to allow drivers to signal if a connection is valid or if it should be discarded:
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
Aug 4, 2020 - Go
-
Updated
Jun 9, 2020 - Go
-
Updated
Mar 8, 2020 - Go
-
Updated
Jun 19, 2020 - Go
MSSQL Storage
-
Updated
Oct 29, 2019 - Go
-
Updated
Aug 27, 2020 - Go
-
Updated
Aug 25, 2020 - Go
-
Updated
Jul 31, 2020 - Go
-
Updated
Apr 21, 2020 - Go
What would you like to be added:
Currently config uses one file per environment (eg. dev, staging, prod, etc) we should move to a multi-file config where we have one folder per environment and config values can be split across multiple files within this folder.
Why is this needed:
For setups where there are
-
Updated
Aug 17, 2020 - Go
-
Updated
May 21, 2020 - Go
SQL supports hidden columns: columns that are only included in a projection if explicitly requested. An example of this is the
rowidcolumn that is created on tables without explicitly primary keys.Currently, there is no way to get a hidden column on a user-defined table: it's only possible if you manually set the hidden boolean in the table descriptor, by editing the CockroachDB source code