Skip to content

Commit

Permalink
fix: Remove unused table creation from playground #3
Browse files Browse the repository at this point in the history
Table test is created but not used.
  • Loading branch information
terminalcommandnewsletter authored May 27, 2024
2 parents d454d17 + de8d5b8 commit 94fa654
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion playground.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<a href="https://github.com/3c2f3e/_hsql/blob/www/playground.html">View source on GitHub</a>
<h1>_hsql Playground</h1>
<textarea rows="10" style="width: min(50em,100%);">
db 'CREATE TABLE test (col1, col2)'
db 'CREATE TABLE users (firstname CHAR(50) NOT NULL, lastname CHAR(50) NOT NULL, age INT(3) NOT NULL)'
db 'INSERT INTO users VALUES (?,?,?)' with ['John', 'Doe', 27]
db 'INSERT INTO users VALUES ($firstname,$lastname,$age)' with {$firstname: 'Jane', $lastname: 'Doe', $age: 34}
Expand Down

0 comments on commit 94fa654

Please sign in to comment.