Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
energy-coresky committed Feb 21, 2023
1 parent 25d13e2 commit 4e0feb2
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion mvc/_earth.jet
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#.sandbox //////////////////////////////////////////////////////////////////////////////
#use(.menu)
#use(.sand)
<div style="width:calc(100vw - 170px)">
<div style="width:calc(100%)">
<div class="bg-wx bg-x" style="position:sticky; top:0px">
<div class="fs16" onclick="sky.d.panel(0)" style="width:60px;line-height:37px">Result</div>
<div class="fs16" onclick="sky.d.panel(1)" style="width:50px;line-height:37px">Form</div>
Expand Down
4 changes: 2 additions & 2 deletions mvc/earth_vars.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
last_sand sql
last_sand php
last_docs 9
last_func 1
width 100
last_link _earth?sandbox=sql
last_link _earth?sandbox=php
sand_esc 1
last_merc 4
3 changes: 0 additions & 3 deletions mvc/sand/php-coresky.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ print_r (
SQL::open('venus')->_tables()
);
//new AbsentClass;



~
$a = ['default'=>'#b11', 'comment'=>'#68a', 'html'=>'', 'keyword'=>'#d11', 'string'=>'#aa3'];
foreach ($a as $k => $v)
Expand Down
35 changes: 19 additions & 16 deletions mvc/sand/sql-mysql.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
show databases
show databases;
show tables;
show engines;
show table status;
SHOW CHARACTER SET;
SHOW INNODB STATUS;

~
select rand();
help 'Contents';
help 'Data Types';
help 'String Functions';
help 'ASCII';
help 'CREATE TABLE';
~
select rand();
select sleep(5);
~
show table status

~
SHOW INNODB STATUS
~
show engines
~
SHOW CHARACTER SET

~
alter table _dev_recycled
auto_increment = 1000
~
help 'CREATE TABLE'
auto_increment = 1000;
~
help 'Contents'
-- help 'Data Types'
-- help 'DATE'
~
UPDATE ab2
SET binc=LOAD_FILE('/tmp/picture')
Expand Down Expand Up @@ -54,4 +53,8 @@ union
select 1 as `out`
~
explain extended select *
from $_memory
from $_memory
~
select 0 as `out`
union
select 1 as `out`

0 comments on commit 4e0feb2

Please sign in to comment.