Annotation of parser3/tests/388-sql.html, revision 1.7

1.1       moko        1: @main[]
1.2       moko        2: 
                      3: $SQL[
                      4:        $.drivers[^table::create{protocol       driver  client
                      5: sqlite ../../sql/sqlite/.libs/libparser3sqlite.so      libsqlite3.so
1.7     ! moko        6: mysql  ../../sql/mysql/.libs/libparser3mysql.so        libmariadbclient.so
1.2       moko        7: }]
                      8: ]
                      9: 
1.7     ! moko       10: #config_group
        !            11: ^connect[^if(0){sqlite://:memory:?}{mysql://@/?config_group=parser3&}multi_statements=1]{
1.1       moko       12:        1. 2 + 2 = ^string:sql{select 2+2}
                     13: 
                     14: 
                     15:        2. void
                     16: 
1.7     ! moko       17:        2.0 $ignore[^try-catch{ ^void:sql{drop table pets} }]
        !            18: 
1.5       moko       19:        2.1 ^void:sql{create table pets (pet varchar(128), food varchar(128), aggressive varchar(128), weigth varchar(128))}
1.1       moko       20: 
                     21:        2.2 ^void:sql{insert into pets values
                     22:                ('cat', 'milk', '^taint['very']', 5),
                     23:                ('dog', 'bone', '^taint["never"]', 10),
                     24:                ('parrot', 'grain', 'alwayws', 1)
                     25:           }
                     26: 
                     27:        2.3 ^try-catch{ ^void:sql{select * from pets} }
                     28:        2.4 ^try-catch{ ^void:sql{query}[ $.unknown[yes] ] }
                     29:        2.5 ^try-catch{ ^void:sql{query}[ $.bind[ $.name[value] ] ] }
                     30: 
1.7     ! moko       31:        2.6 Multiple queries: ^try-catch{ ^void:sql{delete from pets where pet='' ^; delete from pets where pet='' } }
        !            32:        2.7 Exception in second query: ^try-catch{ ^void:sql{delete from pets where pet='' ^; select 2+2 } }
1.1       moko       33: 
                     34:        3. int/double
                     35: 
                     36:        3.1 $v(^int:sql{select 2}) $v $v.CLASS_NAME
                     37:        3.2 ^try-catch{ ^int:sql{select 2}[ $.limit(0) ] }
                     38:        3.3 ^int:sql{select 2}[ $.limit(0) $.default[1] ]
                     39: 
                     40:        3.4 $v(^double:sql{select -2}) $v $v.CLASS_NAME
                     41:        3.5 ^try-catch{ ^double:sql{select -2}[ $.limit(0) ] }
                     42:        3.6 ^double:sql{select -2}[ $.limit(0) $.default[1] ]
                     43: 
                     44: 
                     45:        4. hash
                     46: 
                     47:        4.1 ^h[select * from pets]
                     48: 
                     49:        4.2 ^h[select * from pets; $.type[table]]
                     50: 
                     51:        4.3 ^h[select pet, food from pets; $.type[string] ]
                     52: 
                     53:        4.4 ^try-catch{ ^h[select * from pets; $.type[string] ]}
                     54: 
                     55:        4.5. ^h[select * from pets; $.type[table] $.limit(1) $.offset(1) ]
                     56: 
1.6       moko       57:        4.6 ^try-catch{ ^h[select 'dup', pet from pets; $.type[string] ]}
                     58: 
1.1       moko       59: 
                     60:        5. table
                     61: 
                     62:        5.1 ^t[select * from pets]
                     63: 
                     64:        5.2. ^t[select * from pets; $.limit(1) $.offset(1) ]
                     65: 
1.4       moko       66:        5.3 ^try-catch{ ^t[select * from pets; $.bind[ $.name[value] ] ] }
                     67: 
                     68:        5.4 ^try-catch{ ^t[select * from pets; $.no-such-option[] ] }
                     69: 
1.1       moko       70: 
                     71:        6. file
                     72: 
                     73:        6.1 ^f[select aggressive,'test.txt' from pets; $.limit(1) $.content-type[text/plain] ]
                     74: 
                     75:        6.2 ^f[select aggressive,'test.txt','unknown' from pets; $.limit(1) $.name[unknown] $.offset(1) ]
                     76: 
                     77:        6.3 ^try-catch{ ^f[select * from pets; $.limit(1) ] }
                     78: 
                     79:        6.4 ^try-catch{ ^f[select aggressive from pets; $.limit(0) ] }
                     80: 
                     81:        6.5 ^try-catch{ ^f[select 1 from pets] } - bug!
                     82: 
                     83:        6.6 ^try-catch{ ^f[select 1,2 from pets] }
                     84: 
                     85:        6.7 ^try-catch{ ^f[select aggressive from pets; $.unknown[yes] ] }
                     86: 
                     87:        6.8 $f[^file::create["'test'"]] ^f.sql-string[]
                     88: 
1.3       moko       89:        7. string
                     90: 
                     91:        7.1 ^try-catch{ ^s[select * from pets; $.limit(1) $.offset(1) ] }
                     92:        7.2 ^try-catch{ ^s[select pet from pets] }
                     93:        7.3 ^try-catch{ ^s[select 2+2; $.bind[ $.name[$value] ] ] }
                     94:        7.4 ^try-catch{ ^s[select 2+2; $.no-such-option[] ] }
                     95:        7.5 ^try-catch{ ^s[select pet from pets; $.limit(0) ] }
                     96:        7.6 ^s[select pet from pets; $.limit(0) $.default{default} ]
1.1       moko       97: 
                     98: }
                     99: 
                    100: @h[query;options]
                    101:        $h[^hash::sql{$query}[$options]]
                    102:        ^json:string[$h; $.indent(1) ]
                    103: 
                    104: @t[query;options]
                    105:        $t[^table::sql{$query}[$options]]
                    106:        ^json:string[$t; $.indent(1) ]
                    107: 
                    108: @f[query;options]
                    109:        $f[^file::sql{$query}[$options]]
                    110:        ^json:string[$f; $.indent(1) $.file[text] ]
1.3       moko      111: 
                    112: @s[query;options]
                    113:        $s[^string:sql{$query}[$options]]
                    114:        "$s"

E-mail: