Lines Matching refs:V
23 set V {}
24 append V x
25 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
30 set V [expr {int(1+2)}]
31 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
33 set V [expr {1+12345678012345}]
34 if {[tcl_variable_type V]=="wideInt"} {
36 set V [expr {1+123456789012345}]
37 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
41 set V [expr {1+123456789012345}]
42 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
48 set V [expr {1.0+1}]
49 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
56 set V [binary format a3 abc]
57 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
60 set V "abc"
61 binary scan $V a3 x
62 concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}]
69 set V [db one {SELECT x'616263'}]
70 tcl_variable_type V
74 set V [db one {SELECT 123}]
75 tcl_variable_type V
79 set V [db one {SELECT 1234567890123456}]
80 tcl_variable_type V
83 set V [db one {SELECT 1234567890123456.1}]
84 tcl_variable_type V
87 set V [db one {SELECT 1234567890123.456}]
88 tcl_variable_type V
91 set V [db one {SELECT '1234567890123456.0'}]
92 tcl_variable_type V
95 set V [db one {SELECT NULL}]
96 tcl_variable_type V