Searched defs:ps (Results 1 - 1 of 1) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java382 PreparedStatement ps = conn.getStatement(IS_DIR_IN_CACHE);
383 ps.setString(1, toUnixPath(repository.getDirectoryName()));
384 ps.setString(2, getSourceRootRelativePath(file));
385 ResultSet rs = ps.executeQuery();
565 final PreparedStatement ps;
568 ps = conn.getStatement(GET_DIR_HISTORY);
569 ps.setString(2, filePath);
572 ps = conn.getStatement(GET_FILE_HISTORY);
573 ps.setString(2, getParentPath(filePath));
574 ps
1095 populateFileOrDirMap( PreparedStatement ps, int reposId, Map<String, Integer> map) argument
1124 addAllDirs( PreparedStatement ps, int reposId, String fullPath, Map<String, Integer> map) argument
[all...]

Completed in 669 milliseconds