Lines Matching full:into
82 "INSERT INTO env_vars (var_name, var_value) " in put_env_vars()
117 /// \param db The database into which to store the information.
129 "INSERT INTO metadatas (metadata_id, property_name, property_value) " in put_metadata()
145 /// Stores an arbitrary file into the database as a BLOB.
147 /// \param db The database into which to store the file.
173 // better way to feel blobs into SQLite. in put_file()
177 "INSERT INTO files (contents) VALUES (:contents)"); in put_file()
254 /// Puts a context into the database.
257 /// \post The context is stored into the database with a new identifier.
267 "INSERT INTO contexts (cwd) VALUES (:cwd)"); in put_context()
278 /// Puts a test program into the database.
281 /// \post The test program is stored into the database with a new identifier.
297 "INSERT INTO test_programs (absolute_path, " in put_test_program()
319 /// Puts a test case into the database.
322 /// \post The test case is stored into the database with a new identifier.
343 "INSERT INTO test_cases (test_program_id, name, metadata_id) " in put_test_case()
356 /// Stores a file generated by a test case into the database as a BLOB.
382 "INSERT INTO test_case_files (test_case_id, file_name, file_id) " in put_test_case_file()
396 /// Puts a result into the database.
399 /// \post The result is stored into the database with a new identifier.
417 "INSERT INTO test_results (test_case_id, result_type, " in put_result()