Codota Logo
SimpleQuery.setCleanupRef
Code IndexAdd Codota to your IDE (free)

How to use
setCleanupRef
method
in
org.postgresql.core.v3.SimpleQuery

Best Java code snippets using org.postgresql.core.v3.SimpleQuery.setCleanupRef (Showing top 4 results out of 315)

  • Common ways to obtain SimpleQuery
private void myMethod () {
SimpleQuery s =
  • Codota IconArrayList arrayList;(SimpleQuery) arrayList.get(describePortalIndex++)
  • Codota IconString[] fragments;ProtocolConnectionImpl protoConnection;new SimpleQuery(fragments, protoConnection)
  • Smart code suggestions by Codota
}
origin: org.postgresql/postgresql

private void registerParsedQuery(SimpleQuery query, String statementName) {
 if (statementName == null) {
  return;
 }
 PhantomReference<SimpleQuery> cleanupRef =
   new PhantomReference<SimpleQuery>(query, parsedQueryCleanupQueue);
 parsedQueryMap.put(cleanupRef, statementName);
 query.setCleanupRef(cleanupRef);
}
origin: postgresql/postgresql

private void registerParsedQuery(SimpleQuery query, String statementName) {
  if (statementName == null)
    return ;
  PhantomReference cleanupRef = new PhantomReference(query, parsedQueryCleanupQueue);
  parsedQueryMap.put(cleanupRef, statementName);
  query.setCleanupRef(cleanupRef);
}
origin: org.ancoron.postgresql/org.postgresql.osgi

private void registerParsedQuery(SimpleQuery query, String statementName) {
  if (statementName == null)
    return ;
  PhantomReference cleanupRef = new PhantomReference(query, parsedQueryCleanupQueue);
  parsedQueryMap.put(cleanupRef, statementName);
  query.setCleanupRef(cleanupRef);
}
origin: org.ancoron.postgresql/org.postgresql

private void registerParsedQuery(SimpleQuery query, String statementName) {
  if (statementName == null)
    return ;
  PhantomReference cleanupRef = new PhantomReference(query, parsedQueryCleanupQueue);
  parsedQueryMap.put(cleanupRef, statementName);
  query.setCleanupRef(cleanupRef);
}
org.postgresql.core.v3SimpleQuerysetCleanupRef

Popular methods of SimpleQuery

  • <init>
  • close
  • createParameterList
  • getEncodedStatementName
  • getFields
    Returns the fields that this query will return. If the result set fields are not known returns null.
  • getStatementName
  • hasUnresolvedTypes
  • isPortalDescribed
  • isPreparedFor
  • isStatementDescribed
  • setFields
    Sets the fields that this query will return.
  • setPortalDescribed
  • setFields,
  • setPortalDescribed,
  • setStatementDescribed,
  • setStatementName,
  • toString,
  • unprepare,
  • getFragments,
  • getStatementTypes,
  • setStatementTypes

Popular in Java

  • Reactive rest calls using spring rest template
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • findViewById (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Path (java.nio.file)
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now