Go to the documentation of this file.
19package org.sleuthkit.autopsy.centralrepository.datamodel;
21import java.sql.ResultSet;
22import java.sql.SQLException;
45 static int getId(ResultSet resultSet)
throws SQLException{
46 return resultSet.getInt(
"id");
55 static int getCaseId(ResultSet resultSet)
throws SQLException {
56 return resultSet.getInt(
"case_id");
66 return resultSet.getInt(
"data_source_id");
75 static String
getValue(ResultSet resultSet)
throws SQLException {
76 return resultSet.getString(
"value");
85 static String
getFilePath(ResultSet resultSet)
throws SQLException {
86 return resultSet.getString(
"file_path");
96 return resultSet.getInt(
"known_status");
105 static String
getComment(ResultSet resultSet)
throws SQLException {
106 return resultSet.getString(
"comment");
110 return resultSet.getLong(
"file_obj_id");
static int getCaseId(ResultSet resultSet)
static int getKnownStatus(ResultSet resultSet)
static int getDataSourceId(ResultSet resultSet)
static String getValue(ResultSet resultSet)
static String getFilePath(ResultSet resultSet)
static long getFileObjectId(ResultSet resultSet)
static String getComment(ResultSet resultSet)
static int getId(ResultSet resultSet)
void process(ResultSet resultSet)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.