{error.toString()}
47 | {data && Showing "old" data.
} 48 |115 | No examples found 116 |
117 | )} 118 |Absolutely diddly squat found. Sorry not sorry 🙃
; 63 | } 64 | const keys = Object.keys(records[0]); 65 | const keyTemplate = keys.join(""); 66 | 67 | const MAX_ROWS = 1000; 68 | 69 | return ( 70 |
73 | opening {opening}
74 |
78 | tried to open {openFileResult.filePath}
79 | using {openFileResult.binary}
80 | {openFileResult.isTerminalEditor && `(is terminal editor)`}
81 |
85 | an error occurred trying to open the file:{" "}
86 | {openFileError.toString()}
87 |
91 | Found {records.length.toLocaleString()}{" "} 92 | {records.length > MAX_ROWS 93 | ? `(only showing first ${MAX_ROWS.toLocaleString()})` 94 | : null} 95 |
96 |100 | {keys.map((key) => { 101 | return | {key} | ; 102 | })} 103 |
---|
140 | 141 | Capped to the first {MAX_ROWS.toLocaleString()} rows 142 | 143 |
144 | )} 145 |
46 | SELECT title FROM ? ORDER BY textLength LIMIT 10
47 |
48 | ==
49 |
50 | Select title from ? order bY textLength limiT 10
51 |
53 | But...
54 |
55 | SELECT title FROM ? ORDER BY textLength LIMIT 10
56 |
57 | !=
58 |
59 | SELECT TiTLe FROM ? ORDER BY TextlengTH LIMIT 10
60 |
68 | The most important documentation is{" "}
69 |
79 | Tip! Since AlaSQL is based on JavaScript you can substitute
80 | the .
81 | for ->
. For example, in JavaScript you would do:{" "}
82 | myString.length.toLocaleString()
, and in AlaSQL that
83 | becomes SELECT mystring->length->toLocaleString()
84 | .
85 |
{error.toString()}
47 | {data && Showing "old" data.
} 48 |66 | Found {savedQuery.count.toLocaleString()} records{" "} 67 | {new Date(savedQuery.ts).toLocaleTimeString()} 68 |
69 |{queryError.toString()}
201 |