Skip to content
#

Database

A database is a structured set of data held in a computer, most often a server. Databases use a database management system (DBMS) that interacts with users, similar to a lookup table. Modern databases are designed to allow for creation, querying, updating, and administration of the data it holds.

Here are 11,613 public repositories matching this topic...

sheetjs
dandv
dandv commented Jan 6, 2020
const XLSX = require('xlsx');

const wb = XLSX.utils.book_new();

const ws = XLSX.utils.json_to_sheet([]);

XLSX.utils.book_append_sheet(wb, ws, 'Bug sheet');

ws.A1 = { t: 's', f: 'square' };

XLSX.writeFile(wb, 'formula.ods');

The resulting .ODS file contains:

<table:table-cell table:formula="of:=square" office:value-type="string"><text:p>undefined</text:p></table
walterl
walterl commented Jan 7, 2020

When a user changes their profile information (at /user/edit_current) and clicks the Update button, there is no feedback to the user that the update was attempted, or its outcome. This could lead users to believe that nothing happened.

Steps to reproduce

  1. Log in
  2. Click on the gear icon in the top left, and select Account settings
  3. Change your first/last name
  4. Click the _Up
bobvawter
bobvawter commented Jan 29, 2020

We should generalize the go-version-check.sh script to verify the presence and minimum versions of all tools required from the developer's environment.

The CONTRIBUTING.md file should be consulted (and likely refreshed) for a list of required dependencies. Additionally, it should be cross-checked against the dependencies listed in build/builder/Dockerfile.

For example, the upgrade to

aaronfulkerson
aaronfulkerson commented Aug 12, 2019

Issue type:

[ ] question
[ ] bug report
[ ] feature request
[x] documentation issue

Database system/driver:

[ ] cordova
[ ] mongodb
[ ] mssql
[ ] mysql / mariadb
[ ] oracle
[x] postgres
[ ] cockroachdb
[ ] sqlite
[ ] sqljs
[ ] react-native
[ ] expo

TypeORM version:

[x] latest
[ ] @next
[ ] 0.x.x (or put your version here)

fEyebrow
fEyebrow commented May 10, 2019

Describe the bug
When the elevated database user account does not have permission to create a schema, it cannot establish a connection with an existing database.

But when I provided the root account, I successfully established a connection with the database, but prisma created a schema called prisma.
Look like this:
![image](https://user-images.githubusercontent.com/18180417/57507662-fc

SamuelWeibel
SamuelWeibel commented Oct 4, 2019

Issue

When using a map/reduce function that emits { _id: null }, the returned doc is the "emitting" document instead of null.

The result is what I would expect when _id is not defined; but _id is defined and set to null.

Info

  • Environment: browser
  • Platform: Chrome
  • Adapter: IndexedDB
  • Server: CouchDB 2.3.1

Reproduce

The following design doc (modified to

dgraph
animesh2049
animesh2049 commented Sep 11, 2019

query having eq function in condition, gives weird error message.
Example query:

upsert {
  query {
    me(func: eq(name, "Animesh")) {
      u as uid
      n as name
    }
  }

  mutation @if(eq(n, "Animesh")) {
    set {
      uid(u) <name> "Ashish" .
    }
  }
}

Example error:

details = "while parsing query: "{\n          me(func: eq(name, \"Animesh\")) {\n 
surpavan
surpavan commented Dec 5, 2018

Some scripts are very big and editor will take long time to load into UI - for such scripts we save in drive and run them from workbench or some other tool - just by selecting the file and running it without loading it to editor.

Can we get that feature - probably in tools or some relevant location when we right click on the database name - to run the sql file on selected connection/DB inste

bionicles
bionicles commented Jan 3, 2020

There's no published benchmark for IOPS on S3 storage

Would it be possible to post this alongside the other benchmarks?

S3 storage would be super cheap way to get started because it's serverless (thus more folks would potentially use gun.js)

Thank you for the useful service. I would like to see more Auth/ABAC for startup usage, right now I'm using a centralized database because it's uncle

Wikipedia
Wikipedia

Related Topics

yii composer mysql
You can’t perform that action at this time.