Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.josql.contrib: Javadoc index of package org.josql.contrib.


Package Samples:

org.josql.contrib

Classes:

JoSQLAntFileSelector: A custom file selector for use with Ant. See: Custom Ant Selectors for more details. Allows a JoSQL WHERE clause to be applied to each file passed to the selector isSelected(File,String,File) 55 . An obvious question to ask here is "why do I need this when Ant has lots of custom file selectors". Well, in short, you don't "need" this selector, but I've found that trying to remember all the custom elements and their attributes can be painful and doesn't give me all the power needed to select the files I want. This custom selector however does. The selector supports the following "param"s. where - ...
JoSQLJSPQueryTag: Allows a JoSQL Query to be used in a JSP. Example: <%@ page import="java.util.Arrays" %> <%@ page import="java.io.File" %> <%@ tablib prefix="josql" uri="josqltaglib" %> <josql:query inputList='<%= Arrays.asList (new File ("/home/me/").listFiles ()) %>' results="queryResults"> SELECT * FROM java.io.File WHERE name = '.bashrc' </josql:query> The body of the tag is taken as the statement to execute. Note: this class deliberately does NOT extend org.josql.Query since doing so would then prevent the query from being released via the release() 55 method. The following attributes are ...
JoSQLJRDataSource: A data source suitable for use with JasperReports . This is basically just an extension to org.josql.Query that allows the results to be iterated over, thereby providing the ability for objects to be reported on that are held in memory. One limitation here is that the SQL query must return columns rather than the objects since the values need to be mapped by JasperReports. For example: SELECT lastModified, name FROM java.io.File WHERE name LIKE '%.html' This query would work but it should be noted that the select "columns" (since they do not have aliases assigned) will be labeled 1, 2, X and so ...
JoSQLSwingTableModel: A table model suitable for use with Swing JTable. This is basically just an extension to org.josql.Query that allows the results to be iterated over, thereby providing the ability for objects to be reported on that are held in memory. One limitation here is that the SQL query must return columns rather than the objects since the values need to be mapped by the renderer and editor. For example: SELECT lastModified, name FROM java.io.File WHERE name LIKE '%.html' This query would work but it should be noted that the select "columns" (since they do not have aliases assigned) will be labeled 1, 2, ...
JoSQLFreeChartCategoryDataset
JoSQLFreeChartPieDataset
JoSQLFreeChartXYDataset

Home | Contact Us | Privacy Policy | Terms of Service