From c5a68e71ecd8687dfbbb48c7cb38ec8a9dc091b7 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sun, 25 Sep 2011 12:36:33 -0400 Subject: [PATCH] Fixed typo in spec --- dlib/sqlite/sqlite_abstract.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlib/sqlite/sqlite_abstract.h b/dlib/sqlite/sqlite_abstract.h index 52c802922..8d4b6ad6d 100644 --- a/dlib/sqlite/sqlite_abstract.h +++ b/dlib/sqlite/sqlite_abstract.h @@ -202,7 +202,7 @@ namespace dlib - executes the SQL statement get_sql_string() against the database given to this object's constructor. - If this was a select statement then you can obtain the resulting - rows by calling move_next() and using the get_column_by_*() member + rows by calling move_next() and using the get_column_as_*() member functions. !*/ @@ -214,7 +214,7 @@ namespace dlib ensures - if (there is a result row for this query) then - #get_num_columns() == the number of columns in the result row. - - The get_column_by_*() routines can be used to access the elements + - The get_column_as_*() routines can be used to access the elements of the row data. - returns true - else