<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web development helpdesk &#187; query</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/query/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Reading ResultSet into a List</title>
		<link>http://helpdesk.objects.com.au/java/reading-resultset-into-a-list?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=reading-resultset-into-a-list</link>
		<comments>http://helpdesk.objects.com.au/java/reading-resultset-into-a-list#comments</comments>
		<pubDate>Sun, 11 Oct 2009 03:12:38 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[jdbc DBUtil]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[ResultSet]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1309</guid>
		<description><![CDATA[The DBUtil library from Apache provides a set of class for doing a variety of standard database tasks. eg. To make a query becomes as simple as the following, providing the result set as a List of arrays where each list elements contains a row. QueryRunner runner = new QueryRunner(); ArrayListHandler handler = new ArrayListHandler(); [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/reading-resultset-into-a-list/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use anonymous authentication for an LDAP search?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-use-anonymous-authentication-for-an-ldap-search?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-use-anonymous-authentication-for-an-ldap-search</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-use-anonymous-authentication-for-an-ldap-search#comments</comments>
		<pubDate>Fri, 27 Mar 2009 00:16:51 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[application server]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=858</guid>
		<description><![CDATA[To use anonymous access for an LDAP search or query set the value of Context.SECURITY_AUTHENTICATION to &#8220;none&#8221; in the environment used to create the initial context. Hashtable env = new Hashtable(); env.put(Context.INITIAL_CONTEXT_FACTORY, &#34;com.sun.jndi.ldap.LdapCtxFactory&#34;); env.put(Context.PROVIDER_URL, providerUrl); // Use &#039;none&#039; for anonymous access env.put(Context.SECURITY_AUTHENTICATION, &#34;none&#34;); // Create the initial context DirContext ctx = new InitialDirContext(env); Related posts: [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-use-anonymous-authentication-for-an-ldap-search/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I extract the query string from a POST request?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-extract-the-query-string-from-a-post-request?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-extract-the-query-string-from-a-post-request</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-extract-the-query-string-from-a-post-request#comments</comments>
		<pubDate>Wed, 01 Oct 2008 13:34:40 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[request]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=388</guid>
		<description><![CDATA[You need to build it manually from the ServletRequest. StringBuilder sb = new StringBuilder(&#34;?&#34;); for (Enumeration e = request.getParameterNames(); e.hasMoreElements();) { String param = (String) e.nextElement(); sb.append(param) .append(&#34;=&#34;) .append(request.getParameter(param)) .append(&#34;&#38;&#34;); } String queryString = sb.toString(). substring(0, sb.length() - 1); Related posts: How do I send a POST request using Java? // Create query string String [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-extract-the-query-string-from-a-post-request/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

