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 340 public repositories matching this topic...
-
Updated
Jul 5, 2020 - TypeScript
In the version deployed at http://play.witheve.com/#/examples/quickstart.eve the hover text for sidebar expand/collapse button is reversed. Look through the repo for the offending code but could not find it.
https://www.npmjs.com/package/@prisma/cli and https://www.npmjs.com/package/@prisma/client could use some love <3
Hello,
I'm trying to delay the execution of my App until Firebase receives the Auth status before my "not logged in"-redirections take place. Afaik this is usually done with:
auth.onAuthStateChanged((user) => {
new Vue()
})
But in my current Vue setup my Vue instance get called in a total different way, which gives me a tough time.
`// we should return factory for SSR (runInNewCo
-
Updated
Jul 5, 2020 - TypeScript
Describe the bug
Ids assigned to a collection via wrap(...).assign are not persisted.
Stack trace
...
To Reproduce
Steps to reproduce the behavior:
@Entity()
export class Book2 {
@ManyToMany({ entity: () => BookTag2, cascade: [], fixedOrderColumn: 'order' })
tags = new Collection<BookTag2>(this);
}
...
const id1 = 1; //id of existing tag
const book
-
Updated
Mar 29, 2020 - TypeScript
-
Updated
Jul 6, 2020 - TypeScript
-
Updated
Jun 6, 2020 - TypeScript
-
Updated
May 16, 2020 - TypeScript
-
Updated
Apr 29, 2020 - TypeScript
Current docs shows this as an example:
const fetchRouter = new Router({
strategies: ['fetch']
});
Which is wrong, since that argument should be the second one, not the first one.
A proper example would be:
const fetchRouter = new Router(
{} , // interceptor options
{
strategies: ['fetch']
}
);
The Typescript example shows the following:
import { Nohm, NohmModel, TTypedDefinitions } from 'nohm';
// We're gonna assume the basics are clear and the connection is set up etc. - look at the ES6 example otherwise.
// This example highlights some of the typing capabilities in nohm.
interface IUserProperties {
email: string;
visits: number;
}
class UserModel extWhen checking if a document exists in a collection, I use the function documentCollection.documentExists. For example:
const cities = db.collection("City")
const city_exists = await cities.documentExists("Country/1234")
console.log("city_exists = ", city_exists)
But instead of looking only in the specific "City" collection, it finds documents from other collections (like "Count
It'd be very helpful for have an option in SQL window to export the output table to csv or text file (or at least enable selecting a subset of cells and copying them to another editor).
-
Updated
Jul 2, 2020 - TypeScript
-
Updated
Sep 25, 2018 - TypeScript
-
Updated
Jun 9, 2020 - TypeScript
-
Updated
Apr 27, 2020 - TypeScript
-
Updated
Jun 10, 2020 - TypeScript
-
Updated
Jun 5, 2020 - TypeScript
Re: https://googleapis.dev/nodejs/bigquery/latest/BigQuery.html#createQueryJob:
It does not mention the ability to define a default dataset for the query.
However, code can do things like this:
const query = {query: queryString};
if (connection.datasetName) {
query.defaultDataset = { datasetId: connection.datasetName };
}
// ...
return bigquery
.createQueryJob
-
Updated
Jul 3, 2020 - TypeScript
- Wikipedia
- Wikipedia
Issue type:
[x] question
[ ] bug report
[ ] feature request
[x] documentation issue
Database system/driver:
[ ]
cordova[x]
mongodb[ ]
mssql[ ]
mysql/mariadb[ ]
oracle[ ]
postgres[ ]
cockroachdb[ ]
sqlite[ ]
sqljs[ ]
react-native[ ]
expoTypeORM version:
[x]
latest[ ]
@next[ ]
0.x.x(or put your version here)