HomeSort by relevance Sort by last modified time
    Searched defs:sql (Results 1 - 25 of 52) sorted by null

1 2 3

  /website/portal/trunk/lib/tonic-war/
jdbc2_0-stdext.jar 
  /website/auth/AuthDb/src/org/opensolaris/auth/dao/
CollectiveAndCollectiveTypeDAO.java 18 import java.sql.*;
71 StringBuilder sql = new StringBuilder(); local
72 sql.append("select c.collective_id, c.collective_type_id, ")
79 sql.append(where)
84 sql.append(where)
92 sql.append("= ? ");
95 sql.append("like ? ").append(DbManager.ESCAPE_STRING);
102 sql.append("like ? ").append(DbManager.ESCAPE_STRING);
112 sql.append(where);
114 sql.append(result.getScrollPredicate())
    [all...]
UserToCollectiveDAO.java 17 import java.sql.*;
253 StringBuilder sql = new StringBuilder( local
260 sql.append(" and utc.end_date > ? or end_date is null) " +
266 ps = c.prepareStatement(sql.toString());
  /website/oso/scm/console/RepoDb/src/org/opensolaris/repo/db/dao/
RepositoryDao.java 18 import java.sql.Connection;
19 import java.sql.PreparedStatement;
20 import java.sql.ResultSet;
21 import java.sql.SQLException;
22 import java.sql.Statement;
99 String sql = " DELETE FROM repositories WHERE repository_id = ?"; local
103 ps = con.prepareStatement(sql);
  /website/oso/common/OsoDb/src/org/opensolaris/db/
DbManager.java 19 import java.sql.*;
20 import javax.sql.*;
43 * @param configureSql SQL to configure the database.
44 * @param createSql SQL to create the databaase.
45 * @param populateSql SQL to populate the database.
77 * @param configureSql SQL to configure the database.
78 * @param createSql SQL to create the databaase.
79 * @param populateSql SQL to populate the database.
185 * Get a handle to the SQL used to create the database.
186 * @return a handle to the SQL used to create the database
372 InputStream sql = DbManager.class.getResourceAsStream(sqlResource); local
    [all...]
  /website/oso/auth/ReorgDb/Step2/src/org/opensolaris/data/migration/
MigrationTool.java 18 import java.sql.*;
178 InputStream sql = new BufferedInputStream( local
180 if (ij.runScript(con, sql, enc, System.out, enc) != 0) {
184 sql.close();
203 * Runs the sql script after data migration on the target database
214 InputStream sql = new BufferedInputStream( local
216 if (ij.runScript(con, sql, enc, System.out, enc) != 0) {
220 sql.close();
302 /** SQL script executed before the migration occurs. */
303 private static final String PRE_MIGRATION_SQL = "/sql/pre_migration.sql"
    [all...]
CollectiveDescriptionMigrator.java 17 import java.sql.*;
150 String sql = " SELECT name, description FROM tonic_space "; local
157 ps = con.prepareStatement(sql);
  /website/oso/scm/console/DataMigration/src/org/opensolaris/repo/data/migration/
MigrationTool.java 18 import java.sql.*;
191 String sql = " SELECT st.tableName FROM sys.sysTables st " + local
205 ps = con.prepareStatement(sql);
239 InputStream sql = new BufferedInputStream( local
241 if (ij.runScript(con, sql, enc, System.out, enc) != 0) {
245 sql.close();
258 * Runs the sql script after data migration on the target database
269 InputStream sql = new BufferedInputStream( local
271 if (ij.runScript(con, sql, enc, System.out, enc) != 0) {
275 sql.close()
    [all...]
  /website/oso-libraries/Derby/
derby.jar 
  /website/auth/DataMigration/src/org/opensolaris/data/migration/
MigrationTool.java 19 import java.sql.*;
215 String sql = " SELECT st.tableName FROM sys.sysTables st " + local
229 ps = con.prepareStatement(sql);
265 InputStream sql = new BufferedInputStream( local
267 if (ij.runScript(con, sql, enc, System.out, enc)!=0) {
271 sql.close();
290 * Runs the sql script after data migration on the target database
301 InputStream sql = new BufferedInputStream( local
303 if (ij.runScript(con, sql, enc, System.out, enc)!=0) {
307 sql.close();
    [all...]
CollectiveToCollectiveMigrator.java 18 import java.sql.*;
167 String sql = " select c.collective_id, c.collective, " + local
178 ps = con.prepareStatement(sql);
226 String sql = "insert into collectives_to_collectives (" + local
239 ps = con.prepareStatement(sql);
SshKeyMigrator.java 17 import java.sql.*;
203 String sql = " SELECT user_id, type, description, value " + local
211 ps = con.prepareStatement(sql);
CollectiveMigrator.java 18 import java.sql.*;
184 String sql = " SELECT type, name, description FROM tonic_space "; local
191 ps = con.prepareStatement(sql);
AgreementMigrator.java 19 import java.sql.BatchUpdateException;
20 import java.sql.Connection;
21 import java.sql.PreparedStatement;
22 import java.sql.ResultSet;
23 import java.sql.SQLException;
24 import java.sql.Types;
355 new java.sql.Date(sd.getTime()));
357 new java.sql.Date(ed.getTime()));
395 String sql = "INSERT INTO agreement_types (agreement_type, " + local
400 ps = con.prepareStatement(sql);
425 String sql = "SELECT agreement_type FROM agreement_types"; local
    [all...]
  /website/auth/AuthDb/src/org/opensolaris/auth/db/
DbManager.java 20 import java.sql.*;
22 import javax.sql.*;
44 * it will be created. During creation the following three SQL scripts will be
45 * executed to create and populate the database, all held in the /sql directory
65 * @param configureDbSql SQL to configure the database.
66 * @param createDbSql SQL to create the databaase.
67 * @param populateDbSql SQL to populate the database.
100 * @param configureDbSql SQL to configure the database.
101 * @param createDbSql SQL to create the databaase.
102 * @param populateDbSql SQL to populate the database
678 InputStream sql = new BufferedInputStream( local
    [all...]
  /website/oso/auth/DataMigration/src/org/opensolaris/data/migration/
MigrationTool.java 18 import java.sql.*;
213 String sql = " SELECT st.tableName FROM sys.sysTables st " + local
227 ps = con.prepareStatement(sql);
261 InputStream sql = new BufferedInputStream( local
263 if (ij.runScript(con, sql, enc, System.out, enc) != 0) {
267 sql.close();
286 * Runs the sql script after data migration on the target database
297 InputStream sql = new BufferedInputStream( local
299 if (ij.runScript(con, sql, enc, System.out, enc) != 0) {
303 sql.close()
    [all...]
AgreementMigrator.java 19 import java.sql.BatchUpdateException;
20 import java.sql.Connection;
21 import java.sql.PreparedStatement;
22 import java.sql.ResultSet;
23 import java.sql.SQLException;
24 import java.sql.Types;
390 String sql = "INSERT INTO agreement_types (agreement_type, " + local
395 ps = con.prepareStatement(sql);
420 String sql = "SELECT agreement_type FROM agreement_types"; local
427 ps = con.prepareStatement(sql);
    [all...]
CollectiveMigrator.java 18 import java.sql.*;
183 String sql = " SELECT type, name, description FROM tonic_space "; local
190 ps = con.prepareStatement(sql);
SshKeyMigrator.java 17 import java.sql.*;
203 String sql = " SELECT user_id, type, description, value " + local
211 ps = con.prepareStatement(sql);
  /website/auth/Libraries/Derby/
derby.jar 
  /website/auth/AuthXWiki/src/org/opensolaris/auth/xwiki/
OSXWikiAuthServiceImpl.java 312 String sql = "delete from XWikiLock as lock where" + local
314 Query query = session.createQuery(sql);
  /website/oso/auth/AuthXWiki/src/org/opensolaris/auth/xwiki/
OSXWikiAuthServiceImpl.java 312 String sql = "delete from XWikiLock as lock where" + local
314 Query query = session.createQuery(sql);
  /website/oso/auth/AuthDb/src/org/opensolaris/auth/db/dao/
UserToCollectiveDAO.java 18 import java.sql.*;
402 StringBuilder sql = new StringBuilder( local
409 sql.append(" and utc.start_date <= ? " +
415 ps = c.prepareStatement(sql.toString());
  /website/auth/Libraries/J2EE/
jstl.jar 
  /website/oso-libraries/J2EE/
jstl.jar 

Completed in 1640 milliseconds

1 2 3