Skip to content
#

SQL

sql logo

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 9,824 public repositories matching this topic...

sharvilshah
sharvilshah commented Oct 17, 2019

Bug report

power_sensors table returns -1.00 value for all power related SMC keys, instead of actual values.

osquery> .all power_sensors;
+------+----------+-------------------+-------+
| key  | category | name              | value |
+------+----------+-------------------+-------+
| PBLC | power    | Battery Rail      | -1.00 
KOLANICH
KOLANICH commented Jan 11, 2019

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

willvousden
willvousden commented Oct 13, 2018

Is the README the only documentation available for this project? I find myself having to read the source to understand the interface and features that are available (e.g., context managers, bulk_query, etc.).

In the case of bulk_query, the arguments are simply passed through to the underlying SQLAlchemy engine, with no explanation. I tracked it down in [SQLAlchemy's documentation](https:/

JeanGolang
JeanGolang commented Feb 7, 2017

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-
server
rolandh
rolandh commented Aug 28, 2019

nopCommerce version: 4.00

Make "buy now" redirect to login page if customer is not logged in.

Currently if you do not enable anon purchases (required by us) then there is no purchase button and it is not intuitive that they must register/login to purchase.

Is there anyway we could still have the buy now button but force the user to login/register if they click it?

Created by Donald D. Chamberlin, Raymond F. Boyce

Released 1986

Wikipedia
Wikipedia

Related Topics

database php mysql
You can’t perform that action at this time.