Lines Matching refs:REAL

5248 ** <tr><td><b>sqlite3_column_double</b><td>&rarr;<td>REAL result
5377 ** <tr><td> TEXT <td> FLOAT <td> [CAST] to REAL
5380 ** <tr><td> BLOB <td> FLOAT <td> [CAST] to REAL
5796 ** <tr><td><b>sqlite3_value_double</b><td>&rarr;<td>REAL value
22385 "REAL",
31443 case COLTYPE_REAL: printf(" REAL"); break;
81505 ** manifest type REAL.
90641 ** always preferred, even if the affinity is REAL, because
90686 ** into a numeric representation. Use either INTEGER or REAL whichever
91027 /* SQLITE_FLOAT */ "REAL",
92338 ** has REAL affinity. Such column values may still be stored as
92365 ** <li> P2=='E' &rarr; REAL
93521 /* When applying REAL affinity, if the result is still an MEM_Int
93524 ** the type really wants to be REAL. */
93584 /* When applying REAL affinity, if the result is still an MEM_Int
93587 ** the type really wants to be REAL. */
110516 /* If the column has REAL affinity, it may currently be stored as an
119120 ** 'REAL' | SQLITE_AFF_REAL
119148 }else if( h==(('r'<<24)+('e'<<16)+('a'<<8)+'l') /* REAL */
119616 /* SQLITE_AFF_REAL */ " REAL"
120131 ** a datatype that is one of INT, INTEGER, REAL, TEXT, or BLOB.
124688 /* If the column affinity is REAL but the number is an integer, then it
124690 ** representation) then converted to REAL by an OP_RealAffinity opcode.
128666 ** 'F' REAL
128763 ** 'E' REAL
136146 0x13, /* REAL */
147896 ** If column as REAL affinity and the table is an ordinary b-tree table
147899 ** it has been converted into REAL.
149496 /* excluded.* columns of type REAL need to be converted to a hard real */
177850 ** values into a REAL column, so they can be challenging to test. This
198361 const char *zJContent; /* 1: Content for INT, REAL, and STRING */
204739 static const char *azFormat[] = {",%.*s REAL", ",%.*s INT"};
210842 ** CREATE TABLE t1(a, b TEXT, c REAL, PRIMARY KEY(b, c));
210846 ** CREATE TABLE rbu_imposter2(c1 TEXT, c2 REAL, id INTEGER) WITHOUT ROWID;