#176 generate SQL from data

This commit is contained in:
Jan Prochazka
2021-10-14 10:56:11 +02:00
parent 0f1cc85423
commit 1908cb1210
5 changed files with 192 additions and 8 deletions

View File

@@ -12,10 +12,10 @@
import useEffect from '../utility/useEffect';
import { getContext } from 'svelte';
import { mountCodeCompletion } from './codeCompletion';
export let engine;
export let conid;
export let database;
export let readOnly;
export let engine = null;
export let conid = null;
export let database = null;
export let readOnly = false;
let domEditor;