diff --git a/reference/sqlite/functions/sqlite-fetch-column-types.xml b/reference/sqlite/functions/sqlite-fetch-column-types.xml index 468c1e7025..d2b2791775 100755 --- a/reference/sqlite/functions/sqlite-fetch-column-types.xml +++ b/reference/sqlite/functions/sqlite-fetch-column-types.xml @@ -1,5 +1,5 @@ - + sqlite_fetch_column_types @@ -57,7 +57,16 @@ result_type - &sqlite.result-type; + + The optional result_type parameter accepts a + constant and determines how the returned array will be indexed. Using + SQLITE_ASSOC will return only associative indices + (named fields) while SQLITE_NUM will return only + numerical indices (ordinal field numbers). + SQLITE_BOTH will return both associative and + numerical indices. SQLITE_ASSOC is the default for + this function. + @@ -72,6 +81,28 @@ &sqlite.case-fold; + + &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 5.1.0 + Added result_type + + + + + + + &reftitle.examples;