J.C.Ködel

Results 75 issues of J.C.Ködel

Let's assume we have two tables: ```sql CREATE TABLE Orders ( id INT PRIMARY KEY ); CREATE TABLE Products ( id INT PRIMARY KEY, orderId INT REFERENCES Orders(id) ); ```...

enhancement
generator

Don't know if I'm using Daos properly, but... Consider the following code: `database.dart` ```dart @UseMoor( include: {"users.moor", "purchases.moor"}, daos: [UsersDao, PurchasesDao], ) class Database extends _$Database { // ... }...

I have a .moor file like this: ```sql CREATE TABLE Foos ( id TEXT NOT NULL PRIMARY KEY, name TEXT NOT NULL ) AS Foo; CREATE TABLE Bars ( id...

To get syntax highlighting (at least the colors), I've configurated my VS code as this: ```json { "[sql]": { "editor.formatOnSave": false, "editor.formatOnPaste": false, "editor.formatOnType": false }, "files.associations": { "**/*.moor": "sql"...

enhancement

I'm using an altered version of PetaPoco that includes database operations in a history table (TableName, Date and a JSON with the current poco version). For this, I've created a...

enhancement
needs integration test

In PetaPoco.Core.ttinclude, when we have a table named "Users_History", the MakeSingular method returns "Users_History". There should be an option to split the words by underscore and singularize/pluralize each part of...

enhancement
up-for-grabs

On Android 5.1, when I disable the 📍 Location icon and re-enable, this dialog is displayed: ![image](https://user-images.githubusercontent.com/379339/45785120-8aa89400-bc41-11e8-89fd-e537d30d3b79.png) If I hit *Agree*, everything works fine. If I hit *Disagree*, error 100...

enhancement

Directional keys doesn't work with nano (https://github.com/bmatzelle/gow). Nano works fine on default terminal and the new beta terminal.

Need to build a scraper with CSS queries that come from a database. This query is not accepted: `section.section .row:nth-last-child(2) .form-group div` (It's an example how to get your account...

``` import { EventAggregator } from "aurelia-event-aggregator"; @inject(EventAggregator) export class Index { constructor(eventAggregator) { this.eventAggregator = eventAggregator; this.eventAggregator.publish("VersionRequest", {}); } } ``` With decorator, I get this error: ``` Uncaught...