Comparar commits
39 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| f728848531 | |||
| 51c53acd1f | |||
| fcf2df6abf | |||
| a500bc6d82 | |||
| 067ad67000 | |||
| e60af9b474 | |||
| 32a2f60471 | |||
| aaf80545eb | |||
| aaa7bf2fd7 | |||
| c612068f6c | |||
| 27fa3c84bc | |||
| a72340db0b | |||
| 420ddba3cf | |||
| 9f1693e899 | |||
| 677a769831 | |||
| e7f8ec7cad | |||
| 35327d3401 | |||
| 779ea451e4 | |||
| c73715ed4b | |||
| bed01981a6 | |||
| f40c868626 | |||
| eec2015579 | |||
| 8a832a1448 | |||
| b22e8f631a | |||
| 8dcbef7c3d | |||
| 0cf893ba3b | |||
| ed4b298d48 | |||
| 8c7fdc8be6 | |||
| c9a3de309f | |||
| 5d3781d254 | |||
| 7984807e10 | |||
| cbfe3bfbc5 | |||
| 29435f15c9 | |||
| 70ee67f782 | |||
| f592c1ca13 | |||
| c1ffdb419a | |||
| 7c526cde9a | |||
| 07eb112448 | |||
| 8224dc3b2a |
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="lib" path="lib/ant-contrib-1.0b3.jar"/>
|
||||
<classpathentry kind="lib" path="lib/mysql-connector-java-3.1.14-bin.jar"/>
|
||||
<classpathentry kind="lib" path="lib/postgresql-9.2-1002.jdbc3.jar"/>
|
||||
<classpathentry kind="lib" path="lib/sqlite-jdbc-3.7.2.jar"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/processing-core"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
@@ -0,0 +1,29 @@
|
||||
.DS_Store
|
||||
*~
|
||||
|
||||
local.properties
|
||||
/BezierSQLib
|
||||
|
||||
# ant-javac build directory
|
||||
/bin/
|
||||
|
||||
# hide some results
|
||||
documentation/*
|
||||
distribution/*
|
||||
|
||||
# XCode
|
||||
build/
|
||||
*.mode1
|
||||
*.mode1v3
|
||||
*.mode2v3
|
||||
*.perspective
|
||||
*.perspectivev3
|
||||
*.pbxuser
|
||||
|
||||
# old stuff i can't seem to be able to delete
|
||||
releases/
|
||||
|
||||
website/BezierSQLib/*
|
||||
web-export/*
|
||||
*/web-export/*
|
||||
web-export
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>sql-library-processing</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
+312
@@ -0,0 +1,312 @@
|
||||
<project name="BezierSQLib" default="install" basedir="./">
|
||||
|
||||
<description>
|
||||
BezierSQLib (formerly SQLibrary) build file, based on Processing libraries build file.
|
||||
</description>
|
||||
|
||||
<target name="settings">
|
||||
|
||||
<!-- == Change these two for building == -->
|
||||
|
||||
<property file="local.properties" />
|
||||
|
||||
<condition property="props.present">
|
||||
<available file="local.properties" />
|
||||
</condition>
|
||||
|
||||
<fail unless="processing.dir" message="To make the build work, create a file named local.properties, with the following:
|
||||
${line.separator}processing.dir=/path/to/processing-git
|
||||
${line.separator}with the path to where you have the code for Processing checked out. ${line.separator}(This script will look for the 'core' directory inside that folder.)
|
||||
${line.separator}libraries.dir=/path/to/sketchbook/libraries
|
||||
${line.separator}with the full path to the 'libraries' folder inside your sketchbook." />
|
||||
|
||||
<!-- No changes or adjustments required below -->
|
||||
|
||||
<property name="author" value="Florian Jenett"/>
|
||||
<property name="copyright" value="(c) 2005 - 2012"/>
|
||||
<property name="libraryName" value="BezierSQLib"/>
|
||||
<property name="versionNumber" value="0.3.1"/>
|
||||
<property name="yourLink" value="http://bezier.de/" />
|
||||
<property name="keywords" value="MySQL, SQLite, PostgreSQL, SQL, database"/>
|
||||
<property name="javaVersion" value="1.8"/>
|
||||
|
||||
<buildnumber file="resources/build.number" />
|
||||
|
||||
<path id="library-classes-add">
|
||||
<fileset dir="lib">
|
||||
<include name="mysql-connector-java-3.1.14-bin.jar"/> <!-- MySQL -->
|
||||
<include name="sqlite-jdbc-3.7.2.jar"/> <!-- SQLite -->
|
||||
<include name="postgresql-9.2-1002.jdbc3.jar"/> <!-- PostgreSQL -->
|
||||
</fileset>
|
||||
</path>
|
||||
|
||||
<path id="library-classpath">
|
||||
<fileset dir="${processing.dir}" >
|
||||
<include name="core/library/core.jar"/>
|
||||
</fileset>
|
||||
<path refid="library-classes-add" />
|
||||
</path>
|
||||
|
||||
<property name="jarFile" value="${libraryName}.jar"/>
|
||||
<property name="src" location="src"/>
|
||||
<property name="bin" location="bin"/>
|
||||
<property name="javadoc" location="documentation"/>
|
||||
<property name="dist" value="${libraryName}"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="web" location="../sql-website" />
|
||||
|
||||
</target>
|
||||
|
||||
<target name="init" depends="settings">
|
||||
|
||||
<echo>
|
||||
Properties initialized.
|
||||
src path ${src}
|
||||
bin path ${bin}
|
||||
Processing dir ${processing.dir}
|
||||
processing Libraries ${libraries.dir}
|
||||
java version ${javaVersion}
|
||||
</echo>
|
||||
|
||||
<buildnumber file="lib/build.number"/>
|
||||
<tstamp>
|
||||
<format property="date" pattern="MM/dd/yyyy" offset="0" unit="hour"/>
|
||||
</tstamp>
|
||||
<echo>Start to build the library ... this is vers. ${versionNumber}, build #${build.number} on ${date}</echo>
|
||||
|
||||
<!-- add ant-contrib package, needed for <foreach> -->
|
||||
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
|
||||
<classpath>
|
||||
<pathelement location="lib/ant-contrib-1.0b3.jar"/>
|
||||
</classpath>
|
||||
</taskdef>
|
||||
|
||||
<mkdir dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
COMPILE, BUILD
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="compile" depends="init" description="compile the source" >
|
||||
|
||||
<delete dir="${bin}" />
|
||||
<mkdir dir="${bin}"/>
|
||||
|
||||
<javac srcdir="${src}" destdir="${bin}" source="${javaVersion}">
|
||||
<classpath>
|
||||
<path refid="library-classpath"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="documentation" depends="compile">
|
||||
|
||||
<mkdir dir="${javadoc}" />
|
||||
|
||||
<javadoc bottom="Processing library ${libraryName} (formerly SQLibrary) by ${author}. ${copyright}"
|
||||
destdir="${javadoc}"
|
||||
verbose="false"
|
||||
stylesheetfile="resources/stylesheet.css"
|
||||
doctitle="Javadocs: ${libraryName}"
|
||||
public="true" version="false"
|
||||
windowtitle="Javadocs: ${libraryName} (formerly SQLibrary)">
|
||||
<fileset dir="${src}" defaultexcludes="yes">
|
||||
<include name="**/*"/>
|
||||
</fileset>
|
||||
<classpath>
|
||||
<path refid="library-classpath"/>
|
||||
</classpath>
|
||||
</javadoc>
|
||||
|
||||
</target>
|
||||
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
PACKAGE
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="package" depends="documentation" description="generate the distribution" >
|
||||
|
||||
<delete dir="${dist}" />
|
||||
<mkdir dir="${dist}" />
|
||||
|
||||
<mkdir dir="${dist}/library" />
|
||||
<mkdir dir="${dist}/examples" />
|
||||
<mkdir dir="${dist}/documentation" />
|
||||
<mkdir dir="${dist}/source" />
|
||||
|
||||
<jar jarfile="${dist}/library/${jarFile}" basedir="${bin}"/>
|
||||
|
||||
<copy todir="${dist}/examples">
|
||||
<fileset dir="examples"/>
|
||||
</copy>
|
||||
<copy todir="${dist}/source">
|
||||
<fileset dir="${src}" />
|
||||
</copy>
|
||||
<copy todir="${dist}/library">
|
||||
<path refid="library-classes-add" />
|
||||
</copy>
|
||||
|
||||
<copy todir="${dist}/documentation">
|
||||
<fileset dir="${javadoc}" />
|
||||
</copy>
|
||||
|
||||
<copy todir="${dist}">
|
||||
<fileset file="resources/library.properties" />
|
||||
<fileset file="readme.md" />
|
||||
</copy>
|
||||
<replaceregexp file="${dist}/library.properties" flags="g"
|
||||
match="@@LIBRARY_NAME@@" replace="${libraryName}" />
|
||||
<replaceregexp file="${dist}/library.properties" flags="g"
|
||||
match="@@VERSION@@" replace="${build.number}" />
|
||||
<replaceregexp file="${dist}/library.properties" flags="g"
|
||||
match="@@PRETTY_VERSION@@" replace="${versionNumber}" />
|
||||
|
||||
<!-- zip the distribution of the library -->
|
||||
<zip destfile="releases/${libraryName}-${versionNumber}.zip">
|
||||
<zipfileset dir="">
|
||||
<include name="${dist}/**/**" />
|
||||
</zipfileset>
|
||||
</zip>
|
||||
|
||||
<!-- library contribution system -->
|
||||
<mkdir dir="release" />
|
||||
<copy tofile="release/${libraryName}.zip">
|
||||
<fileset file="releases/${libraryName}-${versionNumber}.zip" />
|
||||
</copy>
|
||||
<copy tofile="release/${libraryName}.txt">
|
||||
<fileset file="${dist}/library.properties" />
|
||||
</copy>
|
||||
|
||||
|
||||
</target>
|
||||
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
INSTALL
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="install" depends="package">
|
||||
|
||||
<mkdir dir="${libraries.dir}/${libraryName}" />
|
||||
|
||||
<copy todir="${libraries.dir}/${libraryName}">
|
||||
<fileset dir="${dist}"/>
|
||||
</copy>
|
||||
|
||||
</target>
|
||||
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
RELEASE
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="release" depends="install">
|
||||
|
||||
<mkdir dir="${web}" />
|
||||
<move todir="${web}/documentation">
|
||||
<fileset dir="${dist}/documentation" />
|
||||
</move>
|
||||
|
||||
<move todir="${web}/examples">
|
||||
<fileset dir="${dist}/examples" />
|
||||
</move>
|
||||
|
||||
<copy todir="${web}">
|
||||
<fileset dir="resources/web" />
|
||||
</copy>
|
||||
|
||||
<!--
|
||||
format the index.html file.
|
||||
regular expressions are used to parse the web index.html file.
|
||||
key words starting and ending with ## are replaced by values
|
||||
defined earlier in the beginning of this build file.
|
||||
-->
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="##yourLibrary##"
|
||||
replace="${libraryName}"
|
||||
flags="g" />
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="##author##"
|
||||
replace="${author}"
|
||||
flags="g" />
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="##versionNumber##"
|
||||
replace="${versionNumber}"
|
||||
flags="g" />
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="##yourLink##"
|
||||
replace="${yourLink}"
|
||||
flags="g" />
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="##date##"
|
||||
replace="${date}"
|
||||
flags="g" />
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="##keywords##"
|
||||
replace="${keywords}"
|
||||
flags="g" />
|
||||
|
||||
|
||||
<antcall target="processExamples" />
|
||||
|
||||
<mkdir dir="${web}/download" />
|
||||
|
||||
<copy file="releases/${libraryName}-${versionNumber}.zip" todir="${web}/download" />
|
||||
|
||||
</target>
|
||||
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
CLEAN
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="clean" >
|
||||
<delete dir="${dist}" />
|
||||
<delete dir="${javadoc}" />
|
||||
<delete dir="${build}" />
|
||||
<delete dir="${web}" />
|
||||
</target>
|
||||
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
EXAMPLES, all
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="processExamples">
|
||||
<dirset id="examples.contents" dir="examples" excludes="*/*"/>
|
||||
<property name="examples.list" refid="examples.contents"/>
|
||||
<foreach list="${examples.list}" target="addExamples" param="exampleDir" delimiter=";">
|
||||
</foreach>
|
||||
<!--echo>${examples.list}</echo-->
|
||||
<!--foreach param="exampleDir" target="addExamples">
|
||||
<path>
|
||||
<dirset id="examples.contents" dir="examples" excludes="*/*"/>
|
||||
</path>
|
||||
</foreach-->
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="(##examples##)"
|
||||
replace=""
|
||||
flags="g" />
|
||||
</target>
|
||||
|
||||
<!-- + + + + + + + + + + + + + + + + + + + + + + +
|
||||
EXAMPLES, one
|
||||
+ + + + + + + + + + + + + + + + + + + + + + + -->
|
||||
<target name="addExamples" depends="settings">
|
||||
<property name="exampleZipped" value="${exampleDir}.zip"/>
|
||||
|
||||
<zip destfile="${web}/examples/${exampleZipped}"
|
||||
basedir="${web}/examples/${exampleDir}/"
|
||||
excludes="**/_DS.Store" />
|
||||
|
||||
<replaceregexp file="${web}/index.html"
|
||||
match="(##examples##)"
|
||||
replace="<li><a href="examples/${exampleZipped}">${exampleDir}</a></li> \1"
|
||||
flags="g" />
|
||||
</target>
|
||||
</project>
|
||||
|
||||
@@ -1,279 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:35 CET 2012 -->
|
||||
<TITLE>
|
||||
DeBezierDataSQL (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="DeBezierDataSQL (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?DeBezierDataSQL.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DeBezierDataSQL.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
Class DeBezierDataSQL</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="./resources/inherit.gif" ALT="extended by "><B>DeBezierDataSQL</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>DeBezierDataSQL</B><DT>extends java.lang.Object</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
In Java classes in a package can not gain access to
|
||||
classes outside any package through reflection.
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="DeBezierDataSQL.html#DeBezierDataSQL()">DeBezierDataSQL</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static java.lang.Object[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="DeBezierDataSQL.html#getValuesFromObject(de.bezier.data.sql.SQL, java.lang.reflect.Field[], java.lang.reflect.Method[], java.lang.Object)">getValuesFromObject</A></B>(<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A> db,
|
||||
java.lang.reflect.Field[] fields,
|
||||
java.lang.reflect.Method[] getters,
|
||||
java.lang.Object object)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="DeBezierDataSQL.html#setFromRow(de.bezier.data.sql.SQL, java.lang.Object)">setFromRow</A></B>(<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A> db,
|
||||
java.lang.Object object)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="DeBezierDataSQL()"><!-- --></A><H3>
|
||||
DeBezierDataSQL</H3>
|
||||
<PRE>
|
||||
public <B>DeBezierDataSQL</B>()</PRE>
|
||||
<DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="setFromRow(de.bezier.data.sql.SQL, java.lang.Object)"><!-- --></A><H3>
|
||||
setFromRow</H3>
|
||||
<PRE>
|
||||
public static void <B>setFromRow</B>(<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A> db,
|
||||
java.lang.Object object)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getValuesFromObject(de.bezier.data.sql.SQL, java.lang.reflect.Field[], java.lang.reflect.Method[], java.lang.Object)"><!-- --></A><H3>
|
||||
getValuesFromObject</H3>
|
||||
<PRE>
|
||||
public static java.lang.Object[] <B>getValuesFromObject</B>(<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A> db,
|
||||
java.lang.reflect.Field[] fields,
|
||||
java.lang.reflect.Method[] getters,
|
||||
java.lang.Object object)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?DeBezierDataSQL.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="DeBezierDataSQL.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,43 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
All Classes (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||
<B>All Classes</B></FONT>
|
||||
<BR>
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="DeBezierDataSQL.html" title="class in <Unnamed>" target="classFrame">DeBezierDataSQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql" target="classFrame">MySQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper" target="classFrame"><I>NameMapper</I></A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql" target="classFrame">PostgreSQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql" target="classFrame">SQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql" target="classFrame">SQLite</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper" target="classFrame">UnderScoreToCamelCaseMapper</A>
|
||||
<BR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,43 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
All Classes (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||
<B>All Classes</B></FONT>
|
||||
<BR>
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="DeBezierDataSQL.html" title="class in <Unnamed>">DeBezierDataSQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql">MySQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper"><I>NameMapper</I></A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql">PostgreSQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql">SQLite</A>
|
||||
<BR>
|
||||
<A HREF="de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A>
|
||||
<BR>
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,144 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Constant Field Values (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Constant Field Values (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H1>
|
||||
Constant Field Values</H1>
|
||||
</CENTER>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
<B>Contents</B><UL>
|
||||
</UL>
|
||||
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,333 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:35 CET 2012 -->
|
||||
<TITLE>
|
||||
MySQL (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="MySQL (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../../de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/MySQL.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="MySQL.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_de.bezier.data.sql.SQL">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
de.bezier.data.sql</FONT>
|
||||
<BR>
|
||||
Class MySQL</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">de.bezier.data.sql.SQL</A>
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>de.bezier.data.sql.MySQL</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>MySQL</B><DT>extends <A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
MySQL wrapper for SQL library for Processing 2+
|
||||
<p>
|
||||
A wrapper around some of sun's java.sql.* classes
|
||||
and the "com.mysql.jdbc.Driver" driver by mysql.com (GPL).
|
||||
</p>
|
||||
see:
|
||||
- http://www.mysql.com/products/connector/j/
|
||||
- http://java.sun.com/products/jdbc/
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>Florian Jenett - mail@florianjenett.de
|
||||
|
||||
created: 07.05.2005 - 12:46 Uhr
|
||||
modified: 2012-02</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_de.bezier.data.sql.SQL"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from class de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#connection">connection</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#database">database</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#driver">driver</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#previousQuery">previousQuery</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#result">result</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#server">server</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#statement">statement</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#type">type</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#url">url</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#user">user</A></CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/MySQL.html#MySQL(processing.core.PApplet, java.lang.String)">MySQL</A></B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _database)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/MySQL.html#MySQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">MySQL</A></B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _server,
|
||||
java.lang.String _database,
|
||||
java.lang.String _user,
|
||||
java.lang.String _pass)</CODE>
|
||||
|
||||
<BR>
|
||||
Creates a new MySQL connection.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/MySQL.html#getTableNames()">getTableNames</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_de.bezier.data.sql.SQL"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#close()">close</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#connect()">connect</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#dispose()">dispose</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#escape(java.lang.Object)">escape</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#execute(java.lang.String)">execute</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#execute(java.lang.String, java.lang.Object...)">execute</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBigDecimal(int)">getBigDecimal</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBigDecimal(java.lang.String)">getBigDecimal</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBoolean(int)">getBoolean</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBoolean(java.lang.String)">getBoolean</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getColumnNames()">getColumnNames</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getConnection()">getConnection</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDate(int)">getDate</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDate(java.lang.String)">getDate</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDebug()">getDebug</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDouble(int)">getDouble</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDouble(java.lang.String)">getDouble</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDriverVersion()">getDriverVersion</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getFloat(int)">getFloat</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getFloat(java.lang.String)">getFloat</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getInt(int)">getInt</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getInt(java.lang.String)">getInt</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getLong(int)">getLong</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getLong(java.lang.String)">getLong</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getNameMapper()">getNameMapper</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getObject(int)">getObject</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getObject(java.lang.String)">getObject</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getString(int)">getString</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getString(java.lang.String)">getString</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTime(int)">getTime</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTime(java.lang.String)">getTime</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTimestamp(int)">getTimestamp</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTimestamp(java.lang.String)">getTimestamp</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#insertUpdateInDatabase(java.lang.String, java.lang.String[], java.lang.Object[])">insertUpdateInDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#nameToGetter(java.lang.String)">nameToGetter</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#nameToSetter(java.lang.String)">nameToSetter</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#next()">next</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#query(java.lang.String)">query</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#query(java.lang.String, java.lang.Object...)">query</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#registerTableNameForClass(java.lang.String, java.lang.Object)">registerTableNameForClass</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.Object)">saveToDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.String, java.lang.Object)">saveToDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setDebug(boolean)">setDebug</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setFromRow(java.lang.Object)">setFromRow</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setNameMapper(de.bezier.data.sql.mapper.NameMapper)">setNameMapper</A></CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="MySQL(processing.core.PApplet, java.lang.String)"><!-- --></A><H3>
|
||||
MySQL</H3>
|
||||
<PRE>
|
||||
public <B>MySQL</B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _database)</PRE>
|
||||
<DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="MySQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
|
||||
MySQL</H3>
|
||||
<PRE>
|
||||
public <B>MySQL</B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _server,
|
||||
java.lang.String _database,
|
||||
java.lang.String _user,
|
||||
java.lang.String _pass)</PRE>
|
||||
<DL>
|
||||
<DD>Creates a new MySQL connection.
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>_papplet</CODE> - Normally you'd pass "this" in for your sketch<DD><CODE>_server</CODE> - The server running the database, try "localhost"<DD><CODE>_database</CODE> - Name of the database<DD><CODE>_user</CODE> - Username for that database<DD><CODE>_pass</CODE> - Password for user</DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getTableNames()"><!-- --></A><H3>
|
||||
getTableNames</H3>
|
||||
<PRE>
|
||||
public java.lang.String[] <B>getTableNames</B>()</PRE>
|
||||
<DL>
|
||||
<DD><B>Description copied from class: <CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#getTableNames()">SQL</A></CODE></B></DD>
|
||||
<DD>Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.
|
||||
<P>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#getTableNames()">getTableNames</A></CODE> in class <CODE><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>String[] The table names</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../../de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/MySQL.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="MySQL.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_de.bezier.data.sql.SQL">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,343 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:35 CET 2012 -->
|
||||
<TITLE>
|
||||
PostgreSQL (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="PostgreSQL (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/PostgreSQL.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PostgreSQL.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_de.bezier.data.sql.SQL">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
de.bezier.data.sql</FONT>
|
||||
<BR>
|
||||
Class PostgreSQL</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">de.bezier.data.sql.SQL</A>
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>de.bezier.data.sql.PostgreSQL</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>PostgreSQL</B><DT>extends <A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
PostgreSQL wrapper for SQL library for Processing 2+
|
||||
<p>
|
||||
This is a wrapper around some of sun's java.sql.* classes
|
||||
and the "org.postgresql.Driver" driver by postgresql.org (BSD).
|
||||
</p>
|
||||
see:<ul>
|
||||
<li>http://jdbc.postgresql.org/download.html</li>
|
||||
<li>http://java.sun.com/products/jdbc/</li>
|
||||
</ul>
|
||||
|
||||
PostgreSQL on OS-X (i used a mix of these on 10.5.x):<ul>
|
||||
<li>http://developer.apple.com/internet/opensource/postgres.html</li>
|
||||
<li>http://shifteleven.com/articles/2008/03/21/installing-postgresql-on-leopard-using-macports</li>
|
||||
<li>http://systems.takizo.com/2008/03/10/installing-postgresql-82-on-leopard-with-macports/</li>
|
||||
</ul>
|
||||
PostgreSQL documentation is at:<ul>
|
||||
<li>http://www.postgresql.org/docs/8.3/interactive/index.html</li>
|
||||
</ul>
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>Florian Jenett - mail@florianjenett.de
|
||||
|
||||
created: 2008-11-29 17:49:23 - fjenett
|
||||
modified: fjenett 2012-02</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_de.bezier.data.sql.SQL"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from class de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#connection">connection</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#database">database</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#driver">driver</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#previousQuery">previousQuery</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#result">result</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#server">server</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#statement">statement</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#type">type</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#url">url</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#user">user</A></CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/PostgreSQL.html#PostgreSQL(processing.core.PApplet, java.lang.String)">PostgreSQL</A></B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _database)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/PostgreSQL.html#PostgreSQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">PostgreSQL</A></B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _server,
|
||||
java.lang.String _database,
|
||||
java.lang.String _user,
|
||||
java.lang.String _pass)</CODE>
|
||||
|
||||
<BR>
|
||||
Creates a new PostgreSQL connection.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/PostgreSQL.html#getTableNames()">getTableNames</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_de.bezier.data.sql.SQL"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#close()">close</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#connect()">connect</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#dispose()">dispose</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#escape(java.lang.Object)">escape</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#execute(java.lang.String)">execute</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#execute(java.lang.String, java.lang.Object...)">execute</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBigDecimal(int)">getBigDecimal</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBigDecimal(java.lang.String)">getBigDecimal</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBoolean(int)">getBoolean</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBoolean(java.lang.String)">getBoolean</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getColumnNames()">getColumnNames</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getConnection()">getConnection</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDate(int)">getDate</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDate(java.lang.String)">getDate</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDebug()">getDebug</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDouble(int)">getDouble</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDouble(java.lang.String)">getDouble</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDriverVersion()">getDriverVersion</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getFloat(int)">getFloat</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getFloat(java.lang.String)">getFloat</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getInt(int)">getInt</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getInt(java.lang.String)">getInt</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getLong(int)">getLong</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getLong(java.lang.String)">getLong</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getNameMapper()">getNameMapper</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getObject(int)">getObject</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getObject(java.lang.String)">getObject</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getString(int)">getString</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getString(java.lang.String)">getString</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTime(int)">getTime</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTime(java.lang.String)">getTime</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTimestamp(int)">getTimestamp</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTimestamp(java.lang.String)">getTimestamp</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#insertUpdateInDatabase(java.lang.String, java.lang.String[], java.lang.Object[])">insertUpdateInDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#nameToGetter(java.lang.String)">nameToGetter</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#nameToSetter(java.lang.String)">nameToSetter</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#next()">next</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#query(java.lang.String)">query</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#query(java.lang.String, java.lang.Object...)">query</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#registerTableNameForClass(java.lang.String, java.lang.Object)">registerTableNameForClass</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.Object)">saveToDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.String, java.lang.Object)">saveToDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setDebug(boolean)">setDebug</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setFromRow(java.lang.Object)">setFromRow</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setNameMapper(de.bezier.data.sql.mapper.NameMapper)">setNameMapper</A></CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="PostgreSQL(processing.core.PApplet, java.lang.String)"><!-- --></A><H3>
|
||||
PostgreSQL</H3>
|
||||
<PRE>
|
||||
public <B>PostgreSQL</B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _database)</PRE>
|
||||
<DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="PostgreSQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
|
||||
PostgreSQL</H3>
|
||||
<PRE>
|
||||
public <B>PostgreSQL</B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _server,
|
||||
java.lang.String _database,
|
||||
java.lang.String _user,
|
||||
java.lang.String _pass)</PRE>
|
||||
<DL>
|
||||
<DD>Creates a new PostgreSQL connection.
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>_papplet</CODE> - Normally you'd pass "this" in for your sketch<DD><CODE>_server</CODE> - The server running the database, try "localhost"<DD><CODE>_database</CODE> - Name of the database<DD><CODE>_user</CODE> - Username for that database<DD><CODE>_pass</CODE> - Password for user</DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getTableNames()"><!-- --></A><H3>
|
||||
getTableNames</H3>
|
||||
<PRE>
|
||||
public java.lang.String[] <B>getTableNames</B>()</PRE>
|
||||
<DL>
|
||||
<DD><B>Description copied from class: <CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#getTableNames()">SQL</A></CODE></B></DD>
|
||||
<DD>Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.
|
||||
<P>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#getTableNames()">getTableNames</A></CODE> in class <CODE><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>String[] The table names</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/PostgreSQL.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="PostgreSQL.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_de.bezier.data.sql.SQL">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
Diferenças do arquivo suprimidas por serem muito extensas
Carregar Diff
@@ -1,339 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
SQLite (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="SQLite (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/SQLite.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="SQLite.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_de.bezier.data.sql.SQL">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
de.bezier.data.sql</FONT>
|
||||
<BR>
|
||||
Class SQLite</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">de.bezier.data.sql.SQL</A>
|
||||
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>de.bezier.data.sql.SQLite</B>
|
||||
</PRE>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>SQLite</B><DT>extends <A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
SQLite wrapper for SQL library for Processing 2+
|
||||
<p>
|
||||
A wrapper around some of sun's java.sql.* classes
|
||||
and the pure java "org.sqlite.JDBC" driver of the Xerial project (Apache 2 license).
|
||||
</p>
|
||||
see:<ul>
|
||||
<li>http://www.xerial.org/trac/Xerial/wiki/SQLiteJDBC</li>
|
||||
<li>http://www.xerial.org/maven/repository/site/xerial-project/sqlite-jdbc/apidocs/index.html?index-all.html</li>
|
||||
<li>http://java.sun.com/products/jdbc/</li>
|
||||
</ul>
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Author:</B></DT>
|
||||
<DD>Florian Jenett - mail@florianjenett.de
|
||||
|
||||
created: 2008-11-29 12:15:15 - fjenett
|
||||
modified: fjenett 20121217</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
|
||||
<A NAME="field_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Field Summary</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="fields_inherited_from_class_de.bezier.data.sql.SQL"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Fields inherited from class de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#connection">connection</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#database">database</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#driver">driver</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#previousQuery">previousQuery</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#result">result</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#server">server</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#statement">statement</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#type">type</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#url">url</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#user">user</A></CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/SQLite.html#SQLite(processing.core.PApplet, java.lang.String)">SQLite</A></B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _database)</CODE>
|
||||
|
||||
<BR>
|
||||
Creates a new SQLite connection.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/SQLite.html#SQLite(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">SQLite</A></B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _server,
|
||||
java.lang.String _database,
|
||||
java.lang.String _user,
|
||||
java.lang.String _pass)</CODE>
|
||||
|
||||
<BR>
|
||||
Creates a new SQLite connection, same as SQLite( PApplet, String )</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../de/bezier/data/sql/SQLite.html#getTableNames()">getTableNames</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_de.bezier.data.sql.SQL"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#close()">close</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#connect()">connect</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#dispose()">dispose</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#escape(java.lang.Object)">escape</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#execute(java.lang.String)">execute</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#execute(java.lang.String, java.lang.Object...)">execute</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBigDecimal(int)">getBigDecimal</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBigDecimal(java.lang.String)">getBigDecimal</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBoolean(int)">getBoolean</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getBoolean(java.lang.String)">getBoolean</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getColumnNames()">getColumnNames</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getConnection()">getConnection</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDate(int)">getDate</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDate(java.lang.String)">getDate</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDebug()">getDebug</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDouble(int)">getDouble</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDouble(java.lang.String)">getDouble</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getDriverVersion()">getDriverVersion</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getFloat(int)">getFloat</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getFloat(java.lang.String)">getFloat</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getInt(int)">getInt</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getInt(java.lang.String)">getInt</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getLong(int)">getLong</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getLong(java.lang.String)">getLong</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getNameMapper()">getNameMapper</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getObject(int)">getObject</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getObject(java.lang.String)">getObject</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getString(int)">getString</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getString(java.lang.String)">getString</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTime(int)">getTime</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTime(java.lang.String)">getTime</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTimestamp(int)">getTimestamp</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#getTimestamp(java.lang.String)">getTimestamp</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#insertUpdateInDatabase(java.lang.String, java.lang.String[], java.lang.Object[])">insertUpdateInDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#nameToGetter(java.lang.String)">nameToGetter</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#nameToSetter(java.lang.String)">nameToSetter</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#next()">next</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#query(java.lang.String)">query</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#query(java.lang.String, java.lang.Object...)">query</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#registerTableNameForClass(java.lang.String, java.lang.Object)">registerTableNameForClass</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.Object)">saveToDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.String, java.lang.Object)">saveToDatabase</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setDebug(boolean)">setDebug</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setFromRow(java.lang.Object)">setFromRow</A>, <A HREF="../../../../de/bezier/data/sql/SQL.html#setNameMapper(de.bezier.data.sql.mapper.NameMapper)">setNameMapper</A></CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="SQLite(processing.core.PApplet, java.lang.String)"><!-- --></A><H3>
|
||||
SQLite</H3>
|
||||
<PRE>
|
||||
public <B>SQLite</B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _database)</PRE>
|
||||
<DL>
|
||||
<DD>Creates a new SQLite connection.
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>_papplet</CODE> - Your sketch, pass "this" in here<DD><CODE>_database</CODE> - Path to the database file, if this is just a name the data and sketch folders are searched for the file</DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="SQLite(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
|
||||
SQLite</H3>
|
||||
<PRE>
|
||||
public <B>SQLite</B>(processing.core.PApplet _papplet,
|
||||
java.lang.String _server,
|
||||
java.lang.String _database,
|
||||
java.lang.String _user,
|
||||
java.lang.String _pass)</PRE>
|
||||
<DL>
|
||||
<DD>Creates a new SQLite connection, same as SQLite( PApplet, String )
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>_papplet</CODE> - Your sketch, pass "this" in here<DD><CODE>_server</CODE> - Ignored<DD><CODE>_database</CODE> - Path to the database file, if this is just a name the data and sketch folders are searched for the file<DD><CODE>_user</CODE> - Ignored<DD><CODE>_pass</CODE> - Ignored</DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="getTableNames()"><!-- --></A><H3>
|
||||
getTableNames</H3>
|
||||
<PRE>
|
||||
public java.lang.String[] <B>getTableNames</B>()</PRE>
|
||||
<DL>
|
||||
<DD><B>Description copied from class: <CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#getTableNames()">SQL</A></CODE></B></DD>
|
||||
<DD>Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.
|
||||
<P>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../de/bezier/data/sql/SQL.html#getTableNames()">getTableNames</A></CODE> in class <CODE><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>String[] The table names</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/SQLite.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="SQLite.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | <A HREF="#fields_inherited_from_class_de.bezier.data.sql.SQL">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,243 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:35 CET 2012 -->
|
||||
<TITLE>
|
||||
NameMapper (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="NameMapper (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/NameMapper.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="NameMapper.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
de.bezier.data.sql.mapper</FONT>
|
||||
<BR>
|
||||
Interface NameMapper</H2>
|
||||
<DL>
|
||||
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public interface <B>NameMapper</B></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
NameMapper is used to map database names to instance names
|
||||
When setting objects from objects with SQL.setFromRow().
|
||||
|
||||
This is just an interface and only one implementation is
|
||||
provided in form of the default UnderScoreToCamelCaseMapper
|
||||
which does: field_name -> fieldName and vv.
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html#backward(java.lang.String)">backward</A></B>(java.lang.String name)</CODE>
|
||||
|
||||
<BR>
|
||||
Reverse of forward, maps object names to database
|
||||
names like: fieldName -> field_name.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html#forward(java.lang.String)">forward</A></B>(java.lang.String name)</CODE>
|
||||
|
||||
<BR>
|
||||
Maps a database name to an object name, typically
|
||||
this might look like: field_name -> fieldName.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="forward(java.lang.String)"><!-- --></A><H3>
|
||||
forward</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>forward</B>(java.lang.String name)</PRE>
|
||||
<DL>
|
||||
<DD>Maps a database name to an object name, typically
|
||||
this might look like: field_name -> fieldName.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="backward(java.lang.String)"><!-- --></A><H3>
|
||||
backward</H3>
|
||||
<PRE>
|
||||
java.lang.String <B>backward</B>(java.lang.String name)</PRE>
|
||||
<DL>
|
||||
<DD>Reverse of forward, maps object names to database
|
||||
names like: fieldName -> field_name.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/NameMapper.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="NameMapper.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,314 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:35 CET 2012 -->
|
||||
<TITLE>
|
||||
UnderScoreToCamelCaseMapper (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="UnderScoreToCamelCaseMapper (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="UnderScoreToCamelCaseMapper.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
de.bezier.data.sql.mapper</FONT>
|
||||
<BR>
|
||||
Class UnderScoreToCamelCaseMapper</H2>
|
||||
<PRE>
|
||||
java.lang.Object
|
||||
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>de.bezier.data.sql.mapper.UnderScoreToCamelCaseMapper</B>
|
||||
</PRE>
|
||||
<DL>
|
||||
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A></DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public class <B>UnderScoreToCamelCaseMapper</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A></DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
UnderScoreToCamelCaseMapper, does as it says.
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
|
||||
<A NAME="constructor_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Constructor Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE><B><A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#UnderScoreToCamelCaseMapper()">UnderScoreToCamelCaseMapper</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#backward(java.lang.String)">backward</A></B>(java.lang.String name)</CODE>
|
||||
|
||||
<BR>
|
||||
Reverse of forward, maps object names to database
|
||||
names like: fieldName -> field_name.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#forward(java.lang.String)">forward</A></B>(java.lang.String name)</CODE>
|
||||
|
||||
<BR>
|
||||
Maps a database name to an object name, typically
|
||||
this might look like: field_name -> fieldName.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#main(java.lang.String...)">main</A></B>(java.lang.String... args)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
|
||||
<A NAME="constructor_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Constructor Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="UnderScoreToCamelCaseMapper()"><!-- --></A><H3>
|
||||
UnderScoreToCamelCaseMapper</H3>
|
||||
<PRE>
|
||||
public <B>UnderScoreToCamelCaseMapper</B>()</PRE>
|
||||
<DL>
|
||||
</DL>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="backward(java.lang.String)"><!-- --></A><H3>
|
||||
backward</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>backward</B>(java.lang.String name)</PRE>
|
||||
<DL>
|
||||
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html#backward(java.lang.String)">NameMapper</A></CODE></B></DD>
|
||||
<DD>Reverse of forward, maps object names to database
|
||||
names like: fieldName -> field_name.
|
||||
<P>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html#backward(java.lang.String)">backward</A></CODE> in interface <CODE><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="forward(java.lang.String)"><!-- --></A><H3>
|
||||
forward</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>forward</B>(java.lang.String name)</PRE>
|
||||
<DL>
|
||||
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html#forward(java.lang.String)">NameMapper</A></CODE></B></DD>
|
||||
<DD>Maps a database name to an object name, typically
|
||||
this might look like: field_name -> fieldName.
|
||||
<P>
|
||||
<DD><DL>
|
||||
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html#forward(java.lang.String)">forward</A></CODE> in interface <CODE><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A></CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="main(java.lang.String...)"><!-- --></A><H3>
|
||||
main</H3>
|
||||
<PRE>
|
||||
public static void <B>main</B>(java.lang.String... args)</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper"><B>PREV CLASS</B></A>
|
||||
NEXT CLASS</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="UnderScoreToCamelCaseMapper.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,43 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
de.bezier.data.sql.mapper (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../../../de/bezier/data/sql/mapper/package-summary.html" target="classFrame">de.bezier.data.sql.mapper</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Interfaces</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="NameMapper.html" title="interface in de.bezier.data.sql.mapper" target="classFrame"><I>NameMapper</I></A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper" target="classFrame">UnderScoreToCamelCaseMapper</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,170 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
de.bezier.data.sql.mapper (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="de.bezier.data.sql.mapper (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../de/bezier/data/sql/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
NEXT PACKAGE</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<H2>
|
||||
Package de.bezier.data.sql.mapper
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Interface Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A></B></TD>
|
||||
<TD>NameMapper is used to map database names to instance names
|
||||
When setting objects from objects with SQL.setFromRow().</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A></B></TD>
|
||||
<TD>UnderScoreToCamelCaseMapper, does as it says.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../de/bezier/data/sql/package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
NEXT PACKAGE</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,157 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
de.bezier.data.sql.mapper Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="de.bezier.data.sql.mapper Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../de/bezier/data/sql/package-tree.html"><B>PREV</B></A>
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
Hierarchy For Package de.bezier.data.sql.mapper
|
||||
</H2>
|
||||
</CENTER>
|
||||
<DL>
|
||||
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../overview-tree.html">All Packages</A></DL>
|
||||
<HR>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.mapper.<A HREF="../../../../../de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper"><B>UnderScoreToCamelCaseMapper</B></A> (implements de.bezier.data.sql.mapper.<A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A>)
|
||||
</UL>
|
||||
</UL>
|
||||
<H2>
|
||||
Interface Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.mapper.<A HREF="../../../../../de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper"><B>NameMapper</B></A></UL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../de/bezier/data/sql/package-tree.html"><B>PREV</B></A>
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../../index.html?de/bezier/data/sql/mapper/package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,38 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
de.bezier.data.sql (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="../../../../de/bezier/data/sql/package-summary.html" target="classFrame">de.bezier.data.sql</A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="MySQL.html" title="class in de.bezier.data.sql" target="classFrame">MySQL</A>
|
||||
<BR>
|
||||
<A HREF="PostgreSQL.html" title="class in de.bezier.data.sql" target="classFrame">PostgreSQL</A>
|
||||
<BR>
|
||||
<A HREF="SQL.html" title="class in de.bezier.data.sql" target="classFrame">SQL</A>
|
||||
<BR>
|
||||
<A HREF="SQLite.html" title="class in de.bezier.data.sql" target="classFrame">SQLite</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,167 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
de.bezier.data.sql (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="de.bezier.data.sql (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../..//package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../de/bezier/data/sql/mapper/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<H2>
|
||||
Package de.bezier.data.sql
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql">MySQL</A></B></TD>
|
||||
<TD>MySQL wrapper for SQL library for Processing 2+</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql">PostgreSQL</A></B></TD>
|
||||
<TD>PostgreSQL wrapper for SQL library for Processing 2+</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A></B></TD>
|
||||
<TD>SQL library for Processing 2+</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql">SQLite</A></B></TD>
|
||||
<TD>SQLite wrapper for SQL library for Processing 2+</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../..//package-summary.html"><B>PREV PACKAGE</B></A>
|
||||
<A HREF="../../../../de/bezier/data/sql/mapper/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,153 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
de.bezier.data.sql Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="de.bezier.data.sql Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../..//package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../de/bezier/data/sql/mapper/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
Hierarchy For Package de.bezier.data.sql
|
||||
</H2>
|
||||
</CENTER>
|
||||
<DL>
|
||||
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../overview-tree.html">All Packages</A></DL>
|
||||
<HR>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>SQL</B></A><UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql"><B>MySQL</B></A><LI TYPE="circle">de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql"><B>PostgreSQL</B></A><LI TYPE="circle">de.bezier.data.sql.<A HREF="../../../../de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql"><B>SQLite</B></A></UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../..//package-tree.html"><B>PREV</B></A>
|
||||
<A HREF="../../../../de/bezier/data/sql/mapper/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?de/bezier/data/sql/package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,144 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Deprecated List (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Deprecated List (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
<B>Deprecated API</B></H2>
|
||||
</CENTER>
|
||||
<HR SIZE="4" NOSHADE>
|
||||
<B>Contents</B><UL>
|
||||
</UL>
|
||||
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,217 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
API Help (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="API Help (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H1>
|
||||
How This API Document Is Organized</H1>
|
||||
</CENTER>
|
||||
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
|
||||
Overview</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE>
|
||||
<H3>
|
||||
Package</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
|
||||
<LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Class/Interface</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
|
||||
<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
|
||||
<P>
|
||||
<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
|
||||
<P>
|
||||
<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
|
||||
Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Annotation Type</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
Each annotation type has its own separate page with the following sections:<UL>
|
||||
<LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL>
|
||||
</BLOCKQUOTE>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Enum</H3>
|
||||
<BLOCKQUOTE>
|
||||
|
||||
<P>
|
||||
Each enum has its own separate page with the following sections:<UL>
|
||||
<LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Tree (Class Hierarchy)</H3>
|
||||
<BLOCKQUOTE>
|
||||
There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
|
||||
<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
|
||||
</BLOCKQUOTE>
|
||||
<H3>
|
||||
Deprecated API</H3>
|
||||
<BLOCKQUOTE>
|
||||
The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
|
||||
<H3>
|
||||
Index</H3>
|
||||
<BLOCKQUOTE>
|
||||
The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
|
||||
<H3>
|
||||
Prev/Next</H3>
|
||||
These links take you to the next or previous class, interface, package, or related page.<H3>
|
||||
Frames/No Frames</H3>
|
||||
These links show and hide the HTML frames. All pages are available with or without frames.
|
||||
<P>
|
||||
<H3>
|
||||
Serialized Form</H3>
|
||||
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
|
||||
<P>
|
||||
<H3>
|
||||
Constant Field Values</H3>
|
||||
The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.
|
||||
<P>
|
||||
<FONT SIZE="-1">
|
||||
<EM>
|
||||
This help file applies to API documentation generated using the standard doclet.</EM>
|
||||
</FONT>
|
||||
<BR>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,451 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Index (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Index (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <HR>
|
||||
<A NAME="_B_"><!-- --></A><H2>
|
||||
<B>B</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/NameMapper.html#backward(java.lang.String)"><B>backward(String)</B></A> -
|
||||
Method in interface de.bezier.data.sql.mapper.<A HREF="./de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A>
|
||||
<DD>Reverse of forward, maps object names to database
|
||||
names like: fieldName -> field_name.
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#backward(java.lang.String)"><B>backward(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.mapper.<A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_C_"><!-- --></A><H2>
|
||||
<B>C</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#close()"><B>close()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Close the database connection
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#connect()"><B>connect()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Open the database connection with the parameters given in the contructor.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#connection"><B>connection</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_D_"><!-- --></A><H2>
|
||||
<B>D</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#database"><B>database</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/package-summary.html"><B>de.bezier.data.sql</B></A> - package de.bezier.data.sql<DD> <DT><A HREF="./de/bezier/data/sql/mapper/package-summary.html"><B>de.bezier.data.sql.mapper</B></A> - package de.bezier.data.sql.mapper<DD> <DT><A HREF="./DeBezierDataSQL.html" title="class in <Unnamed>"><B>DeBezierDataSQL</B></A> - Class in <A HREF="./package-summary.html"><Unnamed></A><DD>In Java classes in a package can not gain access to
|
||||
classes outside any package through reflection.<DT><A HREF="./DeBezierDataSQL.html#DeBezierDataSQL()"><B>DeBezierDataSQL()</B></A> -
|
||||
Constructor for class <A HREF="./DeBezierDataSQL.html" title="class in <Unnamed>">DeBezierDataSQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#dispose()"><B>dispose()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Callback function for PApplet.registerDispose()
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#driver"><B>driver</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_E_"><!-- --></A><H2>
|
||||
<B>E</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#escape(java.lang.Object)"><B>escape(Object)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Generate an escaped String for a given Object
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#execute(java.lang.String)"><B>execute(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Execute a SQL command on the open database connection.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#execute(java.lang.String, java.lang.Object...)"><B>execute(String, Object...)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Execute a SQL command on the open database connection.
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_F_"><!-- --></A><H2>
|
||||
<B>F</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/NameMapper.html#forward(java.lang.String)"><B>forward(String)</B></A> -
|
||||
Method in interface de.bezier.data.sql.mapper.<A HREF="./de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A>
|
||||
<DD>Maps a database name to an object name, typically
|
||||
this might look like: field_name -> fieldName.
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#forward(java.lang.String)"><B>forward(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.mapper.<A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_G_"><!-- --></A><H2>
|
||||
<B>G</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getBigDecimal(java.lang.String)"><B>getBigDecimal(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.math.BigDecimal value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getBigDecimal(int)"><B>getBigDecimal(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.math.BigDecimal value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getBoolean(java.lang.String)"><B>getBoolean(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a boolean value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getBoolean(int)"><B>getBoolean(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a boolean value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getColumnNames()"><B>getColumnNames()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Returns an array with the column names of the last request.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getConnection()"><B>getConnection()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Get connection.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getDate(java.lang.String)"><B>getDate(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.sql.Date value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getDate(int)"><B>getDate(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.sql.Date value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getDebug()"><B>getDebug()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Get current debugging setting
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getDouble(java.lang.String)"><B>getDouble(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a double value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getDouble(int)"><B>getDouble(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a double value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getDriverVersion()"><B>getDriverVersion()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Return the version of the currently active JDBC driver
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getFloat(java.lang.String)"><B>getFloat(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a float value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getFloat(int)"><B>getFloat(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a float value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getInt(java.lang.String)"><B>getInt(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read an integer value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getInt(int)"><B>getInt(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read an integer value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getLong(java.lang.String)"><B>getLong(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a long value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getLong(int)"><B>getLong(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a long value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getNameMapper()"><B>getNameMapper()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Get the current NameMapper
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getObject(java.lang.String)"><B>getObject(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a value from the specified field to hav it returned as an object.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getObject(int)"><B>getObject(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a value from the specified field to hav it returned as an object.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getString(java.lang.String)"><B>getString(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a String value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getString(int)"><B>getString(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a String value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/MySQL.html#getTableNames()"><B>getTableNames()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql">MySQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/PostgreSQL.html#getTableNames()"><B>getTableNames()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql">PostgreSQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getTableNames()"><B>getTableNames()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Get names of available tables in active database,
|
||||
needs to be implemented per db adapter.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQLite.html#getTableNames()"><B>getTableNames()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql">SQLite</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getTime(java.lang.String)"><B>getTime(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.sql.Time value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getTime(int)"><B>getTime(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.sql.Time value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getTimestamp(java.lang.String)"><B>getTimestamp(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.sql.Timestamp value from the specified field.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#getTimestamp(int)"><B>getTimestamp(int)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Read a java.sql.Timestamp value from the specified field.
|
||||
<DT><A HREF="./DeBezierDataSQL.html#getValuesFromObject(de.bezier.data.sql.SQL, java.lang.reflect.Field[], java.lang.reflect.Method[], java.lang.Object)"><B>getValuesFromObject(SQL, Field[], Method[], Object)</B></A> -
|
||||
Static method in class <A HREF="./DeBezierDataSQL.html" title="class in <Unnamed>">DeBezierDataSQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_I_"><!-- --></A><H2>
|
||||
<B>I</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#insertUpdateInDatabase(java.lang.String, java.lang.String[], java.lang.Object[])"><B>insertUpdateInDatabase(String, String[], Object[])</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Insert or update a bunch of values in the database.
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_M_"><!-- --></A><H2>
|
||||
<B>M</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#main(java.lang.String...)"><B>main(String...)</B></A> -
|
||||
Static method in class de.bezier.data.sql.mapper.<A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql"><B>MySQL</B></A> - Class in <A HREF="./de/bezier/data/sql/package-summary.html">de.bezier.data.sql</A><DD>MySQL wrapper for SQL library for Processing 2+<DT><A HREF="./de/bezier/data/sql/MySQL.html#MySQL(processing.core.PApplet, java.lang.String)"><B>MySQL(PApplet, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql">MySQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/MySQL.html#MySQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><B>MySQL(PApplet, String, String, String, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql">MySQL</A>
|
||||
<DD>Creates a new MySQL connection.
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_N_"><!-- --></A><H2>
|
||||
<B>N</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper"><B>NameMapper</B></A> - Interface in <A HREF="./de/bezier/data/sql/mapper/package-summary.html">de.bezier.data.sql.mapper</A><DD>NameMapper is used to map database names to instance names
|
||||
When setting objects from objects with SQL.setFromRow().<DT><A HREF="./de/bezier/data/sql/SQL.html#nameToGetter(java.lang.String)"><B>nameToGetter(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Convert a field name to a getter name: fieldName -> getFieldName().
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#nameToSetter(java.lang.String)"><B>nameToSetter(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Convert a field name to a setter name: fieldName -> setFieldName().
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#next()"><B>next()</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Check if more results (rows) are available.
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_P_"><!-- --></A><H2>
|
||||
<B>P</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql"><B>PostgreSQL</B></A> - Class in <A HREF="./de/bezier/data/sql/package-summary.html">de.bezier.data.sql</A><DD>PostgreSQL wrapper for SQL library for Processing 2+<DT><A HREF="./de/bezier/data/sql/PostgreSQL.html#PostgreSQL(processing.core.PApplet, java.lang.String)"><B>PostgreSQL(PApplet, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql">PostgreSQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/PostgreSQL.html#PostgreSQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><B>PostgreSQL(PApplet, String, String, String, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql">PostgreSQL</A>
|
||||
<DD>Creates a new PostgreSQL connection.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#previousQuery"><B>previousQuery</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_Q_"><!-- --></A><H2>
|
||||
<B>Q</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#query(java.lang.String)"><B>query(String)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Issue a query on the open database connection
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#query(java.lang.String, java.lang.Object...)"><B>query(String, Object...)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Issue a query on the open database connection.
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_R_"><!-- --></A><H2>
|
||||
<B>R</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#registerTableNameForClass(java.lang.String, java.lang.Object)"><B>registerTableNameForClass(String, Object)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Set a table name for a class.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#result"><B>result</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_S_"><!-- --></A><H2>
|
||||
<B>S</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.Object)"><B>saveToDatabase(Object)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Take an object, try to find table name from object name (or look it up),
|
||||
get fields and getters from object and pass that on to
|
||||
insertUpdateIntoDatabase(table, columns, values).
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#saveToDatabase(java.lang.String, java.lang.Object)"><B>saveToDatabase(String, Object)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Takes a table name and an object and tries to construct a set of
|
||||
columns names from fields and getters found in the object.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#server"><B>server</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#setDebug(boolean)"><B>setDebug(boolean)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Turn some debugging on/off.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#setFromRow(java.lang.Object)"><B>setFromRow(Object)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Highly experimental ...<br />
|
||||
tries to map column names to public fields or setter methods
|
||||
in the given object.
|
||||
<DT><A HREF="./DeBezierDataSQL.html#setFromRow(de.bezier.data.sql.SQL, java.lang.Object)"><B>setFromRow(SQL, Object)</B></A> -
|
||||
Static method in class <A HREF="./DeBezierDataSQL.html" title="class in <Unnamed>">DeBezierDataSQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#setNameMapper(de.bezier.data.sql.mapper.NameMapper)"><B>setNameMapper(NameMapper)</B></A> -
|
||||
Method in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Set the current NameMapper
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>SQL</B></A> - Class in <A HREF="./de/bezier/data/sql/package-summary.html">de.bezier.data.sql</A><DD>SQL library for Processing 2+<DT><A HREF="./de/bezier/data/sql/SQL.html#SQL()"><B>SQL()</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>Do not use this contructor.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#SQL(processing.core.PApplet, java.lang.String)"><B>SQL(PApplet, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>You should not directly use the SQL.class instead use the classes for your database type.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#SQL(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><B>SQL(PApplet, String, String, String, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>You should not directly use the SQL.class instead use the classes for your database type.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql"><B>SQLite</B></A> - Class in <A HREF="./de/bezier/data/sql/package-summary.html">de.bezier.data.sql</A><DD>SQLite wrapper for SQL library for Processing 2+<DT><A HREF="./de/bezier/data/sql/SQLite.html#SQLite(processing.core.PApplet, java.lang.String)"><B>SQLite(PApplet, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql">SQLite</A>
|
||||
<DD>Creates a new SQLite connection.
|
||||
<DT><A HREF="./de/bezier/data/sql/SQLite.html#SQLite(processing.core.PApplet, java.lang.String, java.lang.String, java.lang.String, java.lang.String)"><B>SQLite(PApplet, String, String, String, String)</B></A> -
|
||||
Constructor for class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql">SQLite</A>
|
||||
<DD>Creates a new SQLite connection, same as SQLite( PApplet, String )
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#statement"><B>statement</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_T_"><!-- --></A><H2>
|
||||
<B>T</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#type"><B>type</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_U_"><!-- --></A><H2>
|
||||
<B>U</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper"><B>UnderScoreToCamelCaseMapper</B></A> - Class in <A HREF="./de/bezier/data/sql/mapper/package-summary.html">de.bezier.data.sql.mapper</A><DD>UnderScoreToCamelCaseMapper, does as it says.<DT><A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html#UnderScoreToCamelCaseMapper()"><B>UnderScoreToCamelCaseMapper()</B></A> -
|
||||
Constructor for class de.bezier.data.sql.mapper.<A HREF="./de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper">UnderScoreToCamelCaseMapper</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#url"><B>url</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
<DT><A HREF="./de/bezier/data/sql/SQL.html#user"><B>user</B></A> -
|
||||
Variable in class de.bezier.data.sql.<A HREF="./de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql">SQL</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A>
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,39 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc on Mon Dec 17 14:49:36 CET 2012-->
|
||||
<TITLE>
|
||||
Javadocs: BezierSQLib (formerly SQLibrary)
|
||||
</TITLE>
|
||||
<SCRIPT type="text/javascript">
|
||||
targetPage = "" + window.location.search;
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
targetPage = targetPage.substring(1);
|
||||
if (targetPage.indexOf(":") != -1)
|
||||
targetPage = "undefined";
|
||||
function loadFrames() {
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
top.classFrame.location = top.targetPage;
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
</HEAD>
|
||||
<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
|
||||
<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
|
||||
<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
|
||||
<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
|
||||
</FRAMESET>
|
||||
<FRAME src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
|
||||
<NOFRAMES>
|
||||
<H2>
|
||||
Frame Alert</H2>
|
||||
|
||||
<P>
|
||||
This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
|
||||
<BR>
|
||||
Link to<A HREF="overview-summary.html">Non-frame version.</A>
|
||||
</NOFRAMES>
|
||||
</FRAMESET>
|
||||
</HTML>
|
||||
@@ -1,46 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Overview List (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TH ALIGN="left" NOWRAP><FONT size="+1" CLASS="FrameTitleFont">
|
||||
<B></B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="allclasses-frame.html" target="packageFrame">All Classes</A></FONT>
|
||||
<P>
|
||||
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Packages</FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="package-frame.html" target="packageFrame"><unnamed package></A></FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="de/bezier/data/sql/package-frame.html" target="packageFrame">de.bezier.data.sql</A></FONT>
|
||||
<BR>
|
||||
<FONT CLASS="FrameItemFont"><A HREF="de/bezier/data/sql/mapper/package-frame.html" target="packageFrame">de.bezier.data.sql.mapper</A></FONT>
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,158 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Overview (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Overview (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Overview</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?overview-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="overview-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H1>
|
||||
Javadocs: BezierSQLib
|
||||
</H1>
|
||||
</CENTER>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Packages</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="de/bezier/data/sql/package-summary.html">de.bezier.data.sql</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="20%"><B><A HREF="de/bezier/data/sql/mapper/package-summary.html">de.bezier.data.sql.mapper</A></B></TD>
|
||||
<TD> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Overview</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?overview-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="overview-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,158 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?overview-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
Hierarchy For All Packages</H2>
|
||||
</CENTER>
|
||||
<DL>
|
||||
<DT><B>Package Hierarchies:</B><DD><A HREF="de/bezier/data/sql/package-tree.html">de.bezier.data.sql</A>, <A HREF="de/bezier/data/sql/mapper/package-tree.html">de.bezier.data.sql.mapper</A></DL>
|
||||
<HR>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle"><A HREF="DeBezierDataSQL.html" title="class in <Unnamed>"><B>DeBezierDataSQL</B></A><LI TYPE="circle">de.bezier.data.sql.<A HREF="de/bezier/data/sql/SQL.html" title="class in de.bezier.data.sql"><B>SQL</B></A><UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.<A HREF="de/bezier/data/sql/MySQL.html" title="class in de.bezier.data.sql"><B>MySQL</B></A><LI TYPE="circle">de.bezier.data.sql.<A HREF="de/bezier/data/sql/PostgreSQL.html" title="class in de.bezier.data.sql"><B>PostgreSQL</B></A><LI TYPE="circle">de.bezier.data.sql.<A HREF="de/bezier/data/sql/SQLite.html" title="class in de.bezier.data.sql"><B>SQLite</B></A></UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.mapper.<A HREF="de/bezier/data/sql/mapper/UnderScoreToCamelCaseMapper.html" title="class in de.bezier.data.sql.mapper"><B>UnderScoreToCamelCaseMapper</B></A> (implements de.bezier.data.sql.mapper.<A HREF="de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper">NameMapper</A>)
|
||||
</UL>
|
||||
</UL>
|
||||
<H2>
|
||||
Interface Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">de.bezier.data.sql.mapper.<A HREF="de/bezier/data/sql/mapper/NameMapper.html" title="interface in de.bezier.data.sql.mapper"><B>NameMapper</B></A></UL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
NEXT</FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?overview-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="overview-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,32 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
<Unnamed> (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white">
|
||||
<FONT size="+1" CLASS="FrameTitleFont">
|
||||
<A HREF="package-summary.html" target="classFrame"><Unnamed></A></FONT>
|
||||
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||
<TR>
|
||||
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="DeBezierDataSQL.html" title="class in <Unnamed>" target="classFrame">DeBezierDataSQL</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,3 +0,0 @@
|
||||
|
||||
de.bezier.data.sql
|
||||
de.bezier.data.sql.mapper
|
||||
@@ -1,156 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
(Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title=" (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV PACKAGE
|
||||
<A HREF="de/bezier/data/sql/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<H2>
|
||||
Package <Unnamed>
|
||||
</H2>
|
||||
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="DeBezierDataSQL.html" title="class in <Unnamed>">DeBezierDataSQL</A></B></TD>
|
||||
<TD>In Java classes in a package can not gain access to
|
||||
classes outside any package through reflection.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV PACKAGE
|
||||
<A HREF="de/bezier/data/sql/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?package-summary.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
@@ -1,151 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.6.0_37) on Mon Dec 17 14:49:36 CET 2012 -->
|
||||
<TITLE>
|
||||
Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))
|
||||
</TITLE>
|
||||
|
||||
<META NAME="date" CONTENT="2012-12-17">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title=" Class Hierarchy (Javadocs: BezierSQLib (formerly SQLibrary))";
|
||||
}
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
<A HREF="de/bezier/data/sql/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<CENTER>
|
||||
<H2>
|
||||
Hierarchy For Package <Unnamed>
|
||||
</H2>
|
||||
</CENTER>
|
||||
<DL>
|
||||
<DT><B>Package Hierarchies:</B><DD><A HREF="overview-tree.html">All Packages</A></DL>
|
||||
<HR>
|
||||
<H2>
|
||||
Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle"><A HREF="DeBezierDataSQL.html" title="class in <Unnamed>"><B>DeBezierDataSQL</B></A></UL>
|
||||
</UL>
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV
|
||||
<A HREF="de/bezier/data/sql/package-tree.html"><B>NEXT</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="index.html?package-tree.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
Processing library BezierSQLib (formerly SQLibrary) by Florian Jenett. (c) 2005 - 2012
|
||||
</BODY>
|
||||
</HTML>
|
||||
Arquivo binário não exibido.
|
Antes Largura: | Altura: | Tamanho: 57 B |
Arquivo binário não exibido.
@@ -1,10 +1,14 @@
|
||||
/**
|
||||
* MySQL example 1
|
||||
* https://github.com/fjenett/sql-library-processing
|
||||
*
|
||||
* created 2005-05-10 by fjenett
|
||||
* updated fjenett 20130718
|
||||
* tested with Processing 2.0.x
|
||||
*/
|
||||
|
||||
import de.bezier.data.sql.*;
|
||||
|
||||
|
||||
// created 2005-05-10 by fjenett
|
||||
// updated fjenett 20081129
|
||||
|
||||
|
||||
MySQL msql;
|
||||
|
||||
|
||||
@@ -13,33 +17,40 @@ void setup()
|
||||
size( 100, 100 );
|
||||
|
||||
// this example assumes that you are running the
|
||||
// mysql server locally (on "localhost").
|
||||
//
|
||||
|
||||
// replace --username--, --password-- with your mysql-account.
|
||||
//
|
||||
String user = "root";
|
||||
String pass = "admin";
|
||||
|
||||
// mysql server locally (on "localhost")
|
||||
|
||||
// 1
|
||||
// replace your mysql login:
|
||||
|
||||
String user = "sql_user";
|
||||
String pass = "sql_pass";
|
||||
|
||||
// 2
|
||||
// name of the database to use
|
||||
//
|
||||
String database = "bildwelt";
|
||||
|
||||
String database = "sql_library_test_db";
|
||||
|
||||
// add additional parameters like this:
|
||||
// bildwelt?useUnicode=true&characterEncoding=UTF-8
|
||||
|
||||
// sql_library_test_db?useUnicode=true&characterEncoding=UTF-8
|
||||
|
||||
// 3
|
||||
// connect to database of server "localhost"
|
||||
//
|
||||
|
||||
msql = new MySQL( this, "localhost", database, user, pass );
|
||||
|
||||
if ( msql.connect() )
|
||||
{
|
||||
msql.query( "SELECT COUNT(*) FROM image" );
|
||||
msql.query( "SELECT COUNT(*) FROM %s", "example1" );
|
||||
msql.next();
|
||||
println( "number of rows: " + msql.getInt(1) );
|
||||
println( "this table has " + msql.getInt(1) + " number of rows" );
|
||||
}
|
||||
else
|
||||
{
|
||||
// connection failed !
|
||||
|
||||
// - check your login, password
|
||||
// - check that your server runs on localhost and that the port is set right
|
||||
// - try connecting through other means (terminal or console / MySQL workbench / ...)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
mode.id=processing.mode.java.JavaMode
|
||||
mode=Java
|
||||
Arquivo binário não exibido.
Arquivo binário não exibido.
@@ -0,0 +1,37 @@
|
||||
// Library by fjenett
|
||||
// Example created on 2014-03-12 by Powder
|
||||
// Tested with Processing 3.0a5
|
||||
|
||||
import de.bezier.data.sql.*;
|
||||
|
||||
String dbHost = "localhost"; // if you are using a using a local database, this should be fine
|
||||
String dbPort = "8889"; // replace with database port, MAMP standard is 8889
|
||||
String dbUser = "root"; // replace with database username, MAMP standard is "root"
|
||||
String dbPass = "root"; // replace with database password, MAMP standard is "root"
|
||||
String dbName = "database_name"; // replace with database name
|
||||
String tableName = "table_name"; // replace with table name
|
||||
|
||||
MySQL msql;
|
||||
|
||||
void setup() {
|
||||
msql = new MySQL( this, dbHost + ":" + dbPort, dbName, dbUser, dbPass );
|
||||
|
||||
if (msql.connect()) {
|
||||
// get number of rows
|
||||
msql.query("SELECT COUNT(*) FROM " + tableName);
|
||||
msql.next();
|
||||
println("Number of rows: " + msql.getInt(1));
|
||||
println();
|
||||
|
||||
// access table
|
||||
msql.query("SELECT * FROM " + tableName);
|
||||
while (msql.next()){
|
||||
// replace "first_name" and "last_name" with column names from your table
|
||||
String s1 = msql.getString("first_name");
|
||||
String s2 = msql.getString("last_name");
|
||||
println(s1 + " " + s2);
|
||||
}
|
||||
} else {
|
||||
println("Yikes, there was an error!");
|
||||
}
|
||||
}
|
||||
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
@@ -0,0 +1,3 @@
|
||||
#Build Number for ANT. Do not edit!
|
||||
#Sat Feb 09 09:53:04 EST 2019
|
||||
build.number=570
|
||||
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo executável
+42
@@ -0,0 +1,42 @@
|
||||
Florian Jenett's library that wraps around JDBC drivers to let you access MySQL, SQLite and PostgreSQL databases. [Link to original project](https://github.com/fjenett/sql-library-processing)
|
||||
|
||||
## Latest Release
|
||||
|
||||
~~Latest release (same that is in Processing's library manager):
|
||||
https://raw.github.com/fjenett/sql-library-processing/latest/release/BezierSQLib.zip~~
|
||||
|
||||
This fork has been modified slightly for Processing 3. It's now available in the Contribution Manager in the PDE, or you can install manually by unzipping this folder into your libraries folder:
|
||||
https://github.com/benfry/sql-library-processing/raw/master/release/BezierSQLib.zip
|
||||
|
||||
## Features
|
||||
|
||||
It's not an ORM (and will not become one) but it has some handy features
|
||||
since v0.2.0 that makes it easier to load and save objects to a database.
|
||||
|
||||
setFromRow(object)
|
||||
saveToDatabase(object)
|
||||
insertUpdateIntoDatabase(table, columns, values)
|
||||
|
||||
See:
|
||||
https://raw.github.com/fjenett/sql-library-processing/master/src/de/bezier/data/sql/SQL.java
|
||||
|
||||
## Database Drivers
|
||||
|
||||
Parts of this library are available under their own licenses. These are redistributed as downloaded from the original sources:
|
||||
|
||||
MySQL Connector/J (JDBC driver)
|
||||
mysql-connector-java-3.1.8-bin.jar
|
||||
http://dev.mysql.com/downloads/connector/j/
|
||||
http://dev.mysql.com/downloads/connector/j/3.1.html
|
||||
GPL, http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||||
|
||||
PostgreSQL JDBC driver
|
||||
postgresql-8.3-604.jdbc3.jar
|
||||
http://jdbc.postgresql.org/
|
||||
http://jdbc.postgresql.org/download.html
|
||||
BSD, http://jdbc.postgresql.org/license.html
|
||||
|
||||
SQLite JDBC driver
|
||||
sqlite-jdbc-3.7.2.jar
|
||||
http://code.google.com/p/sqlite-jdbc/
|
||||
Apache License 2.0, http://www.apache.org/licenses/LICENSE-2.0
|
||||
@@ -0,0 +1,8 @@
|
||||
name = BezierSQLib
|
||||
authorList = [Florian Jenett](http://www.bezier.de/)
|
||||
url = https://github.com/fjenett/sql-library-processing
|
||||
category = Data
|
||||
sentence = A library to facilitate communication with SQL-based databases
|
||||
paragraph = SQLibrary is an interface to MySQL, SQLite and PostgreSQL databases
|
||||
version = 1164
|
||||
prettyVersion = 0.3.1
|
||||
Arquivo binário não exibido.
@@ -0,0 +1,3 @@
|
||||
#Build Number for ANT. Do not edit!
|
||||
#Sat Feb 09 09:53:04 EST 2019
|
||||
build.number=1165
|
||||
@@ -0,0 +1,8 @@
|
||||
name = @@LIBRARY_NAME@@
|
||||
authorList = [Florian Jenett](http://www.bezier.de/)
|
||||
url = https://github.com/fjenett/sql-library-processing
|
||||
category = Data
|
||||
sentence = A library to facilitate communication with SQL-based databases
|
||||
paragraph = SQLibrary is an interface to MySQL, SQLite and PostgreSQL databases
|
||||
version = @@VERSION@@
|
||||
prettyVersion = @@PRETTY_VERSION@@
|
||||
@@ -2,15 +2,15 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>BezierSQLib version 0.2.0 - by Florian Jenett</title>
|
||||
<title>##yourLibrary## version ##versionNumber## - by ##author##</title>
|
||||
<meta name="description" content="a library for the programming environment processing" />
|
||||
<meta name="keywords" content="Florian Jenett, BezierSQLib, MySQL, SQLite, PostgreSQL, SQL, database" />
|
||||
<meta name="keywords" content="##author##, ##yourLibrary##, ##keywords##" />
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<meta http-equiv="Content-Language" content="en-us" />
|
||||
<meta name="ROBOTS" content="index,follow,archive" />
|
||||
<meta http-equiv="imagetoolbar" content="false" />
|
||||
<meta name="MSSmartTagsPreventParsing" content="true" />
|
||||
<meta name="author" content="Florian Jenett" />
|
||||
<meta name="author" content="##author##" />
|
||||
<meta name="Rating" content="General" />
|
||||
<meta name="revisit-after" content="7 Days" />
|
||||
<meta name="doc-class" content="Living Document" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<div id="container">
|
||||
|
||||
<div id="header">
|
||||
<h1>BezierSQLib</h1>
|
||||
<p>by <a href="#http://bezier.de/">Florian Jenett</a></p>
|
||||
<h1>##yourLibrary##</h1>
|
||||
<p>by <a href="###yourLink##">##author##</a></p>
|
||||
</div>
|
||||
|
||||
<br class="clear" />
|
||||
@@ -43,10 +43,10 @@
|
||||
<div id="content" class="clear" style="margin-top:40px;">
|
||||
|
||||
<div id="about">
|
||||
<h2>BezierSQLib</h2>
|
||||
<h2>##yourLibrary##</h2>
|
||||
<p>
|
||||
a library for the programming environment <a href="http://www.processing.org" target="_blank">processing</a>.<br />
|
||||
last update, 12/17/2012.
|
||||
last update, ##date##.
|
||||
</p>
|
||||
<p>
|
||||
SQLibrary lets you communicate with a <a href="http://dev.mysql.com/">MySQL</a>, <a href="http://www.postgresql.org/">PostgreSQL</a> or <a href="http://www.sqlite.org/">SQLite</a> databases.
|
||||
@@ -63,7 +63,7 @@
|
||||
<h2>Download</h2>
|
||||
|
||||
<p>
|
||||
Get BezierSQLib version 0.2.0 in <a href="./download/BezierSQLib-0.2.0.zip">.zip format</a>
|
||||
Get ##yourLibrary## version ##versionNumber## in <a href="./download/##yourLibrary##-##versionNumber##.zip">.zip format</a>
|
||||
</p>
|
||||
|
||||
<h2>Installation</h2>
|
||||
@@ -74,7 +74,7 @@
|
||||
</p>
|
||||
<p>
|
||||
<b>Installation in Processing 2.0</b> should be as easy as opening the "Library Manager" from the menu at:<br />
|
||||
Sketch > Import Library ... > Add Library ... > (select BezierSQLib and click "install")
|
||||
Sketch > Import Library ... > Add Library ... > (select ##yourLibrary## and click "install")
|
||||
</p>
|
||||
<p>
|
||||
<b>Manual installation (Processing 1.5 and earlier):</b>
|
||||
@@ -82,9 +82,9 @@
|
||||
<li>Quit processing</li>
|
||||
<li>Find your <em>sketchbook</em> folder, <a href="http://www.processing.org/reference/environment/#Sketchbook" >see second paragraph here</a></li>
|
||||
<li>Add a folder called <em>libraries</em> (lowercase) to your sketchbook if its not already there</li>
|
||||
<li>Move the <em>BezierSQLib-0.2.0.zip</em> into that <em>libraries</em> folder</li>
|
||||
<li>Move the <em>##yourLibrary##-##versionNumber##.zip</em> into that <em>libraries</em> folder</li>
|
||||
<li>Unzip it in place</li>
|
||||
<li>Rename it to <em>BezierSQLib</em></li>
|
||||
<li>Rename it to <em>##yourLibrary##</em></li>
|
||||
<li>Start processing and run one of the included examples to see if the lib is working</li>
|
||||
</ul>
|
||||
</p>
|
||||
@@ -92,7 +92,7 @@
|
||||
|
||||
|
||||
<div id="resources">
|
||||
<p><strong>Keywords: </strong> MySQL, SQLite, PostgreSQL, SQL, database
|
||||
<p><strong>Keywords: </strong> ##keywords##
|
||||
</p>
|
||||
<p><strong>Documentation</strong> is <a href="./documentation/index.html" target="_blank">online here</a> and included in the download.
|
||||
</p>
|
||||
@@ -107,9 +107,9 @@
|
||||
<div id="examples">
|
||||
<h2>Examples</h2>
|
||||
<p>
|
||||
find a list of examples in the current distribution of BezierSQLib, or have a look at them by following the links below.
|
||||
find a list of examples in the current distribution of ##yourLibrary##, or have a look at them by following the links below.
|
||||
<ul>
|
||||
<li><a href="examples/MySQL_example1.zip">MySQL_example1</a></li> <li><a href="examples/MySQL_example2.zip">MySQL_example2</a></li> <li><a href="examples/MySQL_example3.zip">MySQL_example3</a></li> <li><a href="examples/MySQL_timestamp.zip">MySQL_timestamp</a></li> <li><a href="examples/PostgreSQL_example1.zip">PostgreSQL_example1</a></li> <li><a href="examples/SQLite_example1.zip">SQLite_example1</a></li> <li><a href="examples/SQLite_example2.zip">SQLite_example2</a></li>
|
||||
##examples##
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
@@ -153,12 +153,12 @@
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
By Florian Jenett, 2008–today. |
|
||||
By ##author##, 2008–today. |
|
||||
included JDBC drives are available from <a href="http://www.mysql.com/products/connector/j/">MySQL AB</a>, <a href="http://code.google.com/p/sqlite-jdbc/">sqlite-jdbc</a> and <a href="http://jdbc.postgresql.org/">PostgreSQL</a>.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a href="https://github.com/fjenett/sql-library-processing/"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
|
||||
<a href="https://github.com/you"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,153 @@
|
||||
/** UNPACKAGED to be able to access unpackaged classes **/
|
||||
|
||||
import de.bezier.data.sql.*;
|
||||
import de.bezier.data.sql.mapper.*;
|
||||
import java.lang.reflect.*;
|
||||
|
||||
/**
|
||||
* Java classes in a package can not gain access to
|
||||
* classes outside any package through Java's reflection.
|
||||
*
|
||||
* This class is a helper that can access other unpackaged
|
||||
* classes (as Processing sketches are).
|
||||
*
|
||||
* de.bezier.data.SQL <-> DeBezierDataSQL <-> _unpackaged_class_
|
||||
*
|
||||
* fjenett 2011
|
||||
*/
|
||||
|
||||
public class DeBezierDataSQL
|
||||
{
|
||||
public static void setFromRow ( SQL db, Object object )
|
||||
{
|
||||
String[] colNames = db.getColumnNames();
|
||||
if ( colNames == null || colNames.length == 0 ) return;
|
||||
|
||||
Class klass = object.getClass();
|
||||
for ( String colName : colNames )
|
||||
{
|
||||
// translate the fieldname via mapper
|
||||
|
||||
String fieldName = colName;
|
||||
NameMapper mapper = db.getNameMapper();
|
||||
if ( mapper != null )
|
||||
{
|
||||
fieldName = mapper.forward( colName );
|
||||
}
|
||||
|
||||
// fetch value from DB
|
||||
|
||||
Object val = null;
|
||||
try {
|
||||
val = db.getObject(colName);
|
||||
} catch (Exception e) {
|
||||
if (db.getDebug()) e.printStackTrace();
|
||||
}
|
||||
if ( val == null ) {
|
||||
if (db.getDebug()) {
|
||||
System.err.println( "setFromRow(): Value is null" );
|
||||
System.err.println( colName );
|
||||
}
|
||||
continue; // TODO warn here?
|
||||
}
|
||||
|
||||
// // try to make a clone of the value ..?
|
||||
//
|
||||
// Class vClass = val.getClass();
|
||||
// try {
|
||||
// Method vMeth = vClass.getMethod("clone");
|
||||
// if ( vMeth != null &&
|
||||
// Modifier.isPublic(vMeth.getModifiers()) )
|
||||
// {
|
||||
// Object tmp = vMeth.invoke(val);
|
||||
// val = tmp;
|
||||
// //if (DEBUG) System.out.println("Value cloned.");
|
||||
// }
|
||||
// } catch ( Exception ex ) {
|
||||
// if (DEBUG) ex.printStackTrace();
|
||||
// }
|
||||
|
||||
//
|
||||
// try fields first
|
||||
// obj.fieldName = value
|
||||
|
||||
Field f = null;
|
||||
try {
|
||||
f = klass.getField( fieldName );
|
||||
} catch ( Exception e ) {
|
||||
if (db.getDebug()) e.printStackTrace();
|
||||
}
|
||||
if ( f != null )
|
||||
{
|
||||
try {
|
||||
f.set( object, val );
|
||||
continue;
|
||||
} catch (Exception e) {
|
||||
if (db.getDebug()) e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// try setter next ..
|
||||
// obj.setFieldName( value )
|
||||
// obj.fieldName( value )
|
||||
|
||||
Method[] meths = null;
|
||||
try {
|
||||
meths = klass.getMethods();
|
||||
} catch ( Exception e ) {
|
||||
if (db.getDebug()) e.printStackTrace();
|
||||
}
|
||||
if ( meths != null && meths.length > 0 )
|
||||
{
|
||||
String setterName = db.nameToSetter(fieldName);
|
||||
//Class[] paramTypes = new Class[]{val.getClass()};
|
||||
for ( Method meth : meths )
|
||||
{
|
||||
if ( meth.getName().equals(setterName) ||
|
||||
meth.getName().equals(fieldName)
|
||||
/*&& meth.getParameterTypes().equals(paramTypes)*/ )
|
||||
{
|
||||
//if (db.getDebug()) System.out.println( meth );
|
||||
try {
|
||||
meth.invoke( object, new Object[]{val} );
|
||||
break;
|
||||
} catch ( Exception e ) {
|
||||
if (db.getDebug()) e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static Object[] getValuesFromObject ( SQL db, Field[] fields, Method[] getters, Object object )
|
||||
{
|
||||
if ( db == null || object == null ) return null;
|
||||
if ( fields == null || getters == null ) return null;
|
||||
if ( fields.length != getters.length ) return null;
|
||||
|
||||
Object[] vals = new Object[fields.length];
|
||||
|
||||
for ( int i = 0; i < vals.length; i++ ) {
|
||||
try {
|
||||
if ( fields[i] != null )
|
||||
vals[i] = fields[i].get(object);
|
||||
else if ( getters[i] != null )
|
||||
vals[i] = getters[i].invoke(object);
|
||||
else
|
||||
{
|
||||
System.err.println(String.format(
|
||||
"getValuesFromObject() : neither field nor getter given for a value."
|
||||
));
|
||||
return null;
|
||||
}
|
||||
} catch ( Exception e ) {
|
||||
e.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
return vals;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package de.bezier.data.sql;
|
||||
|
||||
import processing.core.*;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* MySQL wrapper for SQL library for Processing 2+
|
||||
* <p>
|
||||
* A wrapper around some of sun's java.sql.* classes
|
||||
* and the "com.mysql.jdbc.Driver" driver by mysql.com (GPL).
|
||||
* </p>
|
||||
* see:
|
||||
* - http://www.mysql.com/products/connector/j/
|
||||
* - http://java.sun.com/products/jdbc/
|
||||
*
|
||||
*
|
||||
* @author Florian Jenett - mail@florianjenett.de
|
||||
*
|
||||
* created: 07.05.2005 - 12:46 Uhr
|
||||
* modified: 2012-02
|
||||
*
|
||||
*/
|
||||
|
||||
public class MySQL
|
||||
extends de.bezier.data.sql.SQL
|
||||
{
|
||||
public MySQL ( PApplet _papplet, String _database )
|
||||
{
|
||||
// should not be used
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new MySQL connection.
|
||||
*
|
||||
* @param _papplet Normally you'd pass "this" in for your sketch
|
||||
* @param _server The server running the database, try "localhost"
|
||||
* @param _database Name of the database
|
||||
* @param _user Username for that database
|
||||
* @param _pass Password for user
|
||||
*/
|
||||
|
||||
public MySQL ( PApplet _papplet, String _server, String _database, String _user, String _pass)
|
||||
{
|
||||
super( _papplet, _server, _database, _user, _pass );
|
||||
init();
|
||||
}
|
||||
|
||||
private void init ()
|
||||
{
|
||||
this.driver = "com.mysql.jdbc.Driver";
|
||||
this.type = "mysql";
|
||||
|
||||
this.url = "jdbc:" + type + "://" + server + "/" + database;
|
||||
}
|
||||
|
||||
public String[] getTableNames ()
|
||||
{
|
||||
if ( tableNames == null )
|
||||
{
|
||||
tableNames = new ArrayList<String>();
|
||||
query( "SHOW TABLES" );
|
||||
while ( next() ) {
|
||||
tableNames.add( getObject("Tables_in_"+database).toString() );
|
||||
}
|
||||
}
|
||||
return tableNames.toArray(new String[0]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
package de.bezier.data.sql;
|
||||
|
||||
import processing.core.*;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* PostgreSQL wrapper for SQL library for Processing 2+
|
||||
* <p>
|
||||
* This is a wrapper around some of sun's java.sql.* classes
|
||||
* and the "org.postgresql.Driver" driver by postgresql.org (BSD).
|
||||
* </p>
|
||||
* see:<ul>
|
||||
* <li>http://jdbc.postgresql.org/download.html</li>
|
||||
* <li>http://java.sun.com/products/jdbc/</li>
|
||||
* </ul>
|
||||
*
|
||||
* PostgreSQL on OS-X (i used a mix of these on 10.5.x):<ul>
|
||||
* <li>http://developer.apple.com/internet/opensource/postgres.html</li>
|
||||
* <li>http://shifteleven.com/articles/2008/03/21/installing-postgresql-on-leopard-using-macports</li>
|
||||
* <li>http://systems.takizo.com/2008/03/10/installing-postgresql-82-on-leopard-with-macports/</li>
|
||||
* </ul>
|
||||
* PostgreSQL documentation is at:<ul>
|
||||
* <li>http://www.postgresql.org/docs/8.3/interactive/index.html</li>
|
||||
* </ul>
|
||||
*
|
||||
* @author Florian Jenett - mail@florianjenett.de
|
||||
*
|
||||
* created: 2008-11-29 17:49:23 - fjenett
|
||||
* modified: fjenett 2012-02
|
||||
*
|
||||
*/
|
||||
|
||||
public class PostgreSQL
|
||||
extends de.bezier.data.sql.SQL
|
||||
{
|
||||
public PostgreSQL ( PApplet _papplet, String _database )
|
||||
{
|
||||
// should not be used
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new PostgreSQL connection.
|
||||
*
|
||||
* @param _papplet Normally you'd pass "this" in for your sketch
|
||||
* @param _server The server running the database, try "localhost"
|
||||
* @param _database Name of the database
|
||||
* @param _user Username for that database
|
||||
* @param _pass Password for user
|
||||
*/
|
||||
|
||||
public PostgreSQL ( PApplet _papplet, String _server, String _database, String _user, String _pass )
|
||||
{
|
||||
super( _papplet, _server, _database, _user, _pass );
|
||||
init();
|
||||
}
|
||||
|
||||
private void init ()
|
||||
{
|
||||
this.driver = "org.postgresql.Driver";
|
||||
this.type = "postgresql";
|
||||
|
||||
this.url = "jdbc:" + type + "://" + server + "/" + database;
|
||||
}
|
||||
|
||||
public String[] getTableNames ()
|
||||
{
|
||||
if ( tableNames == null )
|
||||
{
|
||||
tableNames = new ArrayList<String>();
|
||||
query( "SELECT relname AS table_name FROM pg_stat_user_tables WHERE schemaname='public'" );
|
||||
while ( next() ) {
|
||||
tableNames.add( getObject("table_name").toString() );
|
||||
}
|
||||
}
|
||||
return tableNames.toArray(new String[0]);
|
||||
}
|
||||
}
|
||||
Diferenças do arquivo suprimidas por serem muito extensas
Carregar Diff
@@ -0,0 +1,78 @@
|
||||
package de.bezier.data.sql;
|
||||
|
||||
import processing.core.*;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* SQLite wrapper for SQL library for Processing 2+
|
||||
* <p>
|
||||
* A wrapper around some of sun's java.sql.* classes
|
||||
* and the pure java "org.sqlite.JDBC" driver of the Xerial project (Apache 2 license).
|
||||
* </p>
|
||||
* see:<ul>
|
||||
* <li>http://www.xerial.org/trac/Xerial/wiki/SQLiteJDBC</li>
|
||||
* <li>http://www.xerial.org/maven/repository/site/xerial-project/sqlite-jdbc/apidocs/index.html?index-all.html</li>
|
||||
* <li>http://java.sun.com/products/jdbc/</li>
|
||||
* </ul>
|
||||
*
|
||||
*
|
||||
* @author Florian Jenett - mail@florianjenett.de
|
||||
*
|
||||
* created: 2008-11-29 12:15:15 - fjenett
|
||||
* modified: fjenett 20121217
|
||||
*
|
||||
*/
|
||||
|
||||
public class SQLite
|
||||
extends de.bezier.data.sql.SQL
|
||||
{
|
||||
/**
|
||||
* Creates a new SQLite connection.
|
||||
*
|
||||
* @param _papplet Your sketch, pass "this" in here
|
||||
* @param _database Path to the database file, if this is just a name the data and sketch folders are searched for the file
|
||||
*/
|
||||
|
||||
public SQLite ( PApplet _papplet, String _database )
|
||||
{
|
||||
super( _papplet, _database );
|
||||
init();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new SQLite connection, same as SQLite( PApplet, String )
|
||||
*
|
||||
* @param _papplet Your sketch, pass "this" in here
|
||||
* @param _server Ignored
|
||||
* @param _database Path to the database file, if this is just a name the data and sketch folders are searched for the file
|
||||
* @param _user Ignored
|
||||
* @param _pass Ignored
|
||||
*/
|
||||
|
||||
public SQLite ( PApplet _papplet, String _server, String _database, String _user, String _pass )
|
||||
{
|
||||
this( _papplet, _database );
|
||||
}
|
||||
|
||||
|
||||
private void init ()
|
||||
{
|
||||
this.driver = "org.sqlite.JDBC";
|
||||
this.type = "sqlite";
|
||||
|
||||
this.url = "jdbc:" + type + ":" + database;
|
||||
}
|
||||
|
||||
public String[] getTableNames ()
|
||||
{
|
||||
if ( tableNames == null )
|
||||
{
|
||||
tableNames = new ArrayList<String>();
|
||||
query( "SELECT name AS 'table_name' FROM SQLITE_MASTER WHERE type=\"table\"" );
|
||||
while ( next() ) {
|
||||
tableNames.add( getObject("table_name").toString() );
|
||||
}
|
||||
}
|
||||
return tableNames.toArray(new String[0]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package de.bezier.data.sql.mapper;
|
||||
|
||||
/**
|
||||
* NameMapper is used to map database names to instance names
|
||||
* When setting objects from objects with SQL.setFromRow().
|
||||
*
|
||||
* This is just an interface and only one implementation is
|
||||
* provided in form of the default UnderScoreToCamelCaseMapper
|
||||
* which does: field_name -> fieldName and vv.
|
||||
*/
|
||||
|
||||
public interface NameMapper
|
||||
{
|
||||
/**
|
||||
* Maps a database name to an object name, typically
|
||||
* this might look like: field_name -> fieldName.
|
||||
*/
|
||||
public String forward ( String name );
|
||||
|
||||
/**
|
||||
* Reverse of forward, maps object names to database
|
||||
* names like: fieldName -> field_name.
|
||||
*/
|
||||
public String backward ( String name );
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
package de.bezier.data.sql.mapper;
|
||||
|
||||
/**
|
||||
* UnderScoreToCamelCaseMapper, does as it says.
|
||||
*/
|
||||
public class UnderScoreToCamelCaseMapper implements NameMapper
|
||||
{
|
||||
public String backward ( String name )
|
||||
{
|
||||
String newName = "";
|
||||
for ( int i = 0, k = name.length(); i < k; i++ )
|
||||
{
|
||||
String c = name.charAt(i) + "";
|
||||
if ( c.toUpperCase().equals(c) && !c.toLowerCase().equals(c) ) {
|
||||
if ( i > 0 && i < k-1 )
|
||||
c = "_" + c.toLowerCase();
|
||||
else
|
||||
c = c.toLowerCase();
|
||||
}
|
||||
newName += c;
|
||||
}
|
||||
return newName;
|
||||
}
|
||||
|
||||
public String forward ( String name )
|
||||
{
|
||||
String[] pieces = name.split("_");
|
||||
String newName = pieces[0];
|
||||
for ( int i = 1; i < pieces.length; i++ )
|
||||
{
|
||||
if ( pieces[i] != null && pieces[1].length() > 0 )
|
||||
{
|
||||
newName += pieces[i].substring(0,1).toUpperCase() +
|
||||
pieces[i].substring(1);
|
||||
}
|
||||
}
|
||||
return newName;
|
||||
}
|
||||
|
||||
public static void main ( String ... args )
|
||||
{
|
||||
String[] test = new String[]{
|
||||
"created_at",
|
||||
"created_at_and_else",
|
||||
"rank_1",
|
||||
"_rank_abc",
|
||||
"rank_abc_",
|
||||
"camelCase_and_more"
|
||||
};
|
||||
UnderScoreToCamelCaseMapper mapper = new UnderScoreToCamelCaseMapper();
|
||||
for ( String t : test )
|
||||
{
|
||||
String fwd = mapper.forward(t);
|
||||
System.out.println( t + " -> " + fwd );
|
||||
String back = mapper.backward(fwd);
|
||||
System.out.println( fwd + " -> " + back );
|
||||
System.out.println( t.equals(back) );
|
||||
System.out.println( "" );
|
||||
}
|
||||
}
|
||||
}
|
||||
Referência em uma Nova Issue
Bloquear um usuário