<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Ingres Community Forums - Blogs - teresa</title>
		<link>http://community.ingres.com/forum/blogs/teresa/</link>
		<description><![CDATA[Ingres Corporation is a leading provider of open source database management software and support services. [Toll Free] +1 (888) 446-4737]]></description>
		<language>en</language>
		<lastBuildDate>Sat, 31 Jul 2010 04:29:38 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://community.ingres.com/forum/ingres4/misc/rss.jpg</url>
			<title>Ingres Community Forums - Blogs - teresa</title>
			<link>http://community.ingres.com/forum/blogs/teresa/</link>
		</image>
		<item>
			<title>Time to say goodbye to the “ca.ingres.jdbc” package</title>
			<link>http://community.ingres.com/forum/blogs/teresa/66-time-say-goodbye-oeca-ingres-jdbca-package.html</link>
			<pubDate>Fri, 16 Apr 2010 17:59:49 GMT</pubDate>
			<description>Beginning with Ingres 2006, the Ingres JDBC Driver and DataSources classes contained in the Java archive, iijdbc.jar, under the Java package path of...</description>
			<content:encoded><![CDATA[<div>Beginning with Ingres 2006, the Ingres JDBC Driver and DataSources classes contained in the Java archive, iijdbc.jar, under the Java package path of &quot;ca.ingres.jdbc&quot; were moved to the package path of &quot;com.ingres.jdbc&quot;. The iijdbc.jar archive included with all Ingres 9.x releases also contains the original classes for backward compatibility with the note that the classes would be removed in the next major Ingres release. <br />
<br />
The time has come to say goodbye to the “ca.ingres.jdbc” classes. Some of you may have already noticed that the “ca.ingres.jdbc” package has not been in the <a href="http://esd.ingres.com/product/Community_Projects/Drivers/java/JDBC" target="_blank">JDBC 4.0.x Community Previews</a> and in <a href="http://esd.ingres.com/product/Community_Projects/Ingres_Database" target="_blank">Ingres 10 Community builds</a>.<br />
<br />
The original &quot;ca.ingres.jdbc&quot; package path and classes will be removed from iijdbc.jar beginning with Ingres 10. Existing references to &quot;ca.ingres.jdbc&quot; will need to be changed.  JDBC 4.0, which is supported by the Ingres 10 JDBC driver, provides a new mechanism for loading JDBC drivers which does not require Java applications to instantiate or reference the driver class.  Existing references such as Class.forName(&quot;ca.ingres.jdbc.IngresDriver&quot;) may be removed completely and the JDBC DriverManager will load the Ingres JDBC driver automatically when iijdbc.jar is included in CLASSPATH.  If instantiation of the driver class is still desired, then &quot;ca.ingres.jdbc.IngresDriver&quot; will need to be changed to &quot;com.ingres.jdbc.IngresDriver&quot;.  Any references to DataSources which use the &quot;ca.ingres.jdbc&quot; package path will need to be changed to &quot;com.ingres.jdbc&quot;.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/66-time-say-goodbye-oeca-ingres-jdbca-package.html</guid>
		</item>
		<item>
			<title>Improving Data Load using the new Ingres 10 Batch Execution Feature</title>
			<link>http://community.ingres.com/forum/blogs/teresa/65-improving-data-load-using-new-ingres-10-batch-execution-feature.html</link>
			<pubDate>Thu, 15 Apr 2010 04:14:55 GMT</pubDate>
			<description>One of the new features coming with Ingres 10 is the complete support of batched statements in JDBC. The Ingres JDBC Driver has always supported the...</description>
			<content:encoded><![CDATA[<div>One of the new features coming with Ingres 10 is the complete support of batched statements in JDBC. The Ingres JDBC Driver has always supported the addBatch and executeBatch methods but under the covers executed each statement in the batch individually.  While this worked, it resulted in less than optimal performance. With Ingres 10, a number of changes were made to the Ingres DBMS, Data Access (DAS) Servers and the JDBC Driver to utilize a feature of the Ingres communications layer to send statements across in batches, thereby reducing communications overhead.  In addition, the Ingres DBMS implemented a number of optimizations to improve the processing of these batched queries.  All of these changes have enabled big improvements in response time when processing large batches of statements through JDBC.<br />
<br />
Batch execution is restricted to queries that return either a response or a row count, but no data. For example,<ul><li> Statements allowed include INSERT, DELETE, and statements that return no data, such as CREATE TABLE.</li>
<li> SELECT statements and row-producing procedures are not allowed in batched queries.</li>
<li>If the DBMS does not support batch processing, the Ingres JDBC driver will detect it and automatically execute the statements individually.</li>
</ul>Batched statements that use repeated dynamic INSERT statements (for example, through Java-based Extract Transfer and Load (ETL) tools) are specially optimized to improve performance. See <a href="http://community.ingres.com/wiki/Batch_Statement_Execution_Performance#Documentation" target="_blank">draft documentation</a> for more information on ways to improve the insert performance.<br />
<br />
To trigger the optimizations in the DBMS Server the following criteria must be met:<ul><li> Statement must be a prepared dynamic statement</li>
<li> Statement must be of the form “INSERT INTO……VALUES”</li>
<li> Any values that are expected to change for each insert must be parameterized. As with all inserts, columns can be omitted if they are nullable or have default values (including identity columns).</li>
<li> Parameters for the query must include only column values, other parameters (e.g. table name) are not allowed</li>
</ul><b>Observed Batch Execution Performance behaviors</b><br />
<br />
In testing out the functionality internally, the following behaviors were seen.<ul><li> For local execution of non-dynamic statements and procedures, batch appears to have only a small performance improvement.</li>
<li> For remote execution of non-dynamic statements, JDBC batch performance increases significantly up to a batch size of about 100 statements.</li>
<li> For non-dynamic statements, there does not appear to be a significant improvement in performance for batch sizes over 100.</li>
<li> Batch sizes of 100 and greater reduced communications round-trips to the point that little difference was seen between local and remote JDBC execution.</li>
<li> For dynamic statements, performance just continues to increase as batch size increases due to the copy optimization.</li>
<li> The copy-optimization for prepared statements is actually very detrimental for small batch sizes.  Single statement execution ran at about a minute.  Doing the same thing with a batch size of two statements increased the time to between 12 and 13 minutes!  Execution times then dropped to 2 1/2 minutes at a batch size of 10 statements and only regained parity at a batch size approaching 100 statements.  On the other hand, really large batches went screaming fast.</li>
</ul>Internal  performance testing has shown an improvement of 24 times (193 seconds down to 8 seconds) when comparing inserting 100,000 rows using the prepared insert statement between Ingres 9.x and earlier JDBC batch support and the improved batch execution support in Ingres 10 b 121. Note that the data used internally was likely not representative of real world testing.  <br />
<br />
<b>Turning off the Improved Batch Execution Support</b><br />
<br />
This new functionality will be enabled by default with the Ingres JDBC Driver as it is expected to provide significant performance benefits; however, if for your particular environment you find it doesn’t, you can force individual statement execution by using the ingres.jdbc.batch.enabled system property to disable batch query execution.<br />
<br />
<b>Availability in other Clients</b><br />
<br />
Batch statement execution will also be supported in OpenAPI with Ingres 10.  Future Ingres versions will extend this capability to other drivers.<br />
<br />
<b>How can I get access to the new functionality?</b><br />
<br />
The feature is now available for testing and was recently released to the community in  <a href="http://esd.ingres.com/product/Community_Projects/Ingres_Database" target="_blank">Ingres 10 b 121</a>. The feature is enabled in JDBC Driver version 4.0.1 which is either available as part of the <a href="http://esd.ingres.com/product/Community_Projects/Ingres_Database" target="_blank">Ingres 10 b 121</a> release or from the <a href="http://esd.ingres.com/product/Community_Projects/Drivers/java/JDBC" target="_blank">JDBC 4.0 Community Preview</a> download. More information regarding the features in the 4.0.x JDBC Driver can be found at <a href="http://community.ingres.com/wiki/Ingres_Java_Development_Center/Ingres_Java_Learn#Features_Available_in_Ingres_JDBC_4.0.x_Driver" target="_blank">JDBC 4.0.x New Features</a>. <br />
<br />
If you are interested in the details of the implementation in Ingres, the design specification can be found at <a href="http://community.ingres.com/wiki/Batch_Statement_Execution_Performance" target="_blank">here</a>.<br />
<br />
Sample programs demonstrating the batch capabilities for Java and OpenAPI can be found at <a href="http://community.ingres.com/wiki/Ingres_Examples" target="_blank">Ingres Coding Samples</a>. <br />
<br />
<b>Summary:</b><br />
<br />
Performance testing so far has shown a significant improvement in processing batched rows with the largest improvements being with larger batch sizes. <br />
<br />
Smaller batch sizes, say 10 records per batched query, don’t generate as much improvement due to the overhead of setting up the optimizations in the DBMS that offsets the performance improvements in sending the data in batch across the communications pipe. In fact, better performance for this case is gotten by using individual insert statements in a batch rather than using prepared statements because individual statements don’t invoke the new optimizations in the DBMS.<br />
<br />
JDBC batched statement execution does not exactly match the performance of the Ingres Copy command but it is a significant improvement over Ingres 9.x and earlier.<br />
<br />
Many factors can come into play when using the feature and generating performance numbers, from the table structure to the row size.<br />
<br />
To benefit from this feature requires an updated <a href="http://esd.ingres.com/product/Community_Projects/Drivers/java/JDBC" target="_blank">JDBC Driver (minimum 4.0.1) </a>and <a href="http://esd.ingres.com/product/Community_Projects/Ingres_Database" target="_blank">Ingres 10 b121 DBMS and Data Access (DAS) Servers.<br />
</a> <br />
We are very interested in having the functionality tested by some real world applications to determine whether the changes made are on the right track or do we need to step back and approach from another angle. <br />
<br />
Feedback on your testing can either be provided to the <a href="http://community.ingres.com/forum/database-drivers-apis/" target="_blank">forum</a> or via a <a href="https://servicedesk.ingres.com" target="_blank">Service Desk</a> issue.  Any and all feedback greatly appreciated.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/65-improving-data-load-using-new-ingres-10-batch-execution-feature.html</guid>
		</item>
		<item>
			<title>Ever have trouble identifying when a feature was introduced in Ingres?</title>
			<link>http://community.ingres.com/forum/blogs/teresa/51-ever-have-trouble-identifying-when-feature-introduced-ingres.html</link>
			<pubDate>Tue, 02 Mar 2010 22:03:12 GMT</pubDate>
			<description><![CDATA[It's always challenging to discover what features were released in a particular Ingres version when trying to plan a migration from one release of...]]></description>
			<content:encoded><![CDATA[<div>It's always challenging to discover what features were released in a particular Ingres version when trying to plan a migration from one release of Ingres to another.<br />
<br />
This <a href="http://community.ingres.com/wiki/Ingres_New_Features_Per_Release" target="_blank">document</a> attempts to complement the <a href="http://docs.ingres.com/" target="_blank">Ingres Migration Guide</a> by not only providing the list of features but also including the associated project page if one exists on the Community Wiki.  In some cases, the release will predate the move by Ingres Engineering to make the design documents of new features readily accessible to the community. The <a href="http://docs.ingres.com/" target="_blank">Ingres Migration Guide</a> should always be the first point of reference when research is underway concerning a migration from one Ingres release to another but hopefully the information provided <a href="http://community.ingres.com/wiki/Ingres_New_Features_Per_Release" target="_blank">here</a> will also be beneficial.<br />
<br />
Per Keith's great comment, the Ingres Product Roadmap is availabe at <a href="http://community.ingres.com/wiki/Ingres_Roadmap" target="_blank">Product Roadmaps</a>.  As Ingres 10 moves closer to a GA status, a similar page/layout will be provided and added to <a href="http://community.ingres.com/wiki/Ingres_New_Features_Per_Release" target="_blank">here</a>.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/51-ever-have-trouble-identifying-when-feature-introduced-ingres.html</guid>
		</item>
		<item>
			<title>How to Locate Information About the Ingres .NET Data Provider?</title>
			<link>http://community.ingres.com/forum/blogs/teresa/50-how-locate-information-about-ingres-net-data-provider.html</link>
			<pubDate>Tue, 02 Mar 2010 21:48:22 GMT</pubDate>
			<description>Ever wonder how to find more information on the Ingres .NET Data Provider?  There is quite a bit of information on the Ingres Community Wiki...</description>
			<content:encoded><![CDATA[<div>Ever wonder how to find more information on the Ingres .NET Data Provider?  There is quite a bit of information on the <a href="http:/community.ingres.com/wiki" target="_blank">Ingres Community Wiki</a> relating to the Ingres .NET Data Provider and using .NET with Ingres.<br />
<br />
Most of this information is centrally located at <a href="http://community.ingres.com/wiki/Ingres_DOT_NET_Development_Center" target="_blank">Ingres .NET Development Center</a>.  We try to ensure all content on the wiki related to .NET and Ingres can be accessed from this main page.  I’m sure we don’t manage to link up everything but we do try.<br />
<br />
A summary of the type of information that can be found here follows.<br />
<br />
The .NET Framework supported, the assembly name, assembly version needed for a particular .NET Data Provider version.<br />
<br />
Accessible from this page are:<br />
<br />
•	Articles relating to using .NET with Ingres and integration of Ingres with .NET Applications.  To directly check out all articles see <a href="http://community.ingres.com/wiki/Ingres_Articles#.NET" target="_blank">Ingres .NET Articles.</a><br />
•	Coding samples relating to using new Ingres features from .NET. To directly check out all coding samples see <a href="http://community.ingres.com/wiki/ DOT_NET_Examples" target="_blank">Ingres .NET Coding Samples.</a><br />
•	Presentations around .NET and Ingres.  To directly check out all presentations see <a href="http://community.ingres.com/wiki/Ingres_Presentations /.NET_Presentations" target="_blank">Ingres .NET related presentations.</a><br />
<br />
More recently the section was updated to clearly document what features where introduced in what .NET Data Provider version.<br />
<br />
We are always looking to add new content to the wiki and encourage you to submit ideas for new content or add new content yourself.<br />
<br />
Outside of the Community wiki, the Connectivity Guide in the Ingres product documentation is the base reference resource for the .NET Data Provider.<br />
<br />
Questions can always be posted to the <a href="http://community.ingres.com/forum/database-Data Providers-apis/" target="_blank">Data Provider Forum.</a><br />
<br />
Feedback is always welcome.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/50-how-locate-information-about-ingres-net-data-provider.html</guid>
		</item>
		<item>
			<title>How to Locate Information About the Ingres ODBC Driver?</title>
			<link>http://community.ingres.com/forum/blogs/teresa/49-how-locate-information-about-ingres-odbc-driver.html</link>
			<pubDate>Tue, 02 Mar 2010 21:36:52 GMT</pubDate>
			<description>Ever wonder how to find more information on the Ingres ODBC Driver?  There is quite a bit of information on the Ingres Community Wiki...</description>
			<content:encoded><![CDATA[<div>Ever wonder how to find more information on the Ingres ODBC Driver?  There is quite a bit of information on the <a href="http:/community.ingres.com/wiki" target="_blank">Ingres Community Wiki</a> relating to the Ingres ODBC Driver and using ODBC applications with Ingres.<br />
<br />
Most of this information is centrally located at <a href="http://community.ingres.com/wiki/Ingres_ODBC_Development_Center" target="_blank">Ingres ODBC Development Center</a>.  We try to ensure all content on the wiki related to ODBC and Ingres can be accessed from this main page.  I’m sure we don’t manage to link up everything but we do try.<br />
<br />
A summary of the type of information that can be found here follows.<br />
<br />
Accessible from this page are:<br />
<br />
•	Articles relating to using ODBC applications with Ingres and integration of Ingres with ADO, MS Access, etc.  To directly check out all articles see <a href="http://community.ingres.com/wiki/Ingres_Articles#ODBC" target="_blank">Ingres ODBC Articles.</a><br />
•	Coding samples relating to using new Ingres features from ODBC. To directly check out all coding samples see <a href="http://community.ingres.com/wiki/http://community.ingres.com/wiki/ODBC_Code_Samples" target="_blank">Ingres ODBC Coding Samples.</a><br />
<br />
More recently the section was updated to clearly document what features where introduced in what ODBC Driver version.  <br />
<br />
We are always looking to add new content to the wiki and encourage you to submit ideas for new content or add new content yourself.<br />
<br />
Outside of the Community wiki, the Connectivity Guide in the Ingres product documentation is the base reference resource for the ODBC driver.<br />
<br />
Questions can always be posted to the <a href="http://community.ingres.com/forum/database-drivers-apis/" target="_blank">Driver Forum.</a><br />
<br />
Feedback is always welcome.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/49-how-locate-information-about-ingres-odbc-driver.html</guid>
		</item>
		<item>
			<title>Minor Ingres Community Wiki Refresh</title>
			<link>http://community.ingres.com/forum/blogs/teresa/47-minor-ingres-community-wiki-refresh.html</link>
			<pubDate>Tue, 09 Feb 2010 22:33:36 GMT</pubDate>
			<description>The Ingres Community Wiki has underwent a minor refresh to hopefully help folks find content a bit easier. Check out the new Main Page...</description>
			<content:encoded><![CDATA[<div>The Ingres Community Wiki has underwent a minor refresh to hopefully help folks find content a bit easier. Check out the new <a href="http://community.ingres.com/wiki/Welcome_to_the_Ingres_Community" target="_blank">Main Page</a>. <br />
<br />
The main changes were to cut down on the number of content boxes, update descriptions for the remaining content boxes, and add a brief list of the type of information that could be found in the particular content box.<br />
<br />
Another small change was to bold the &quot;Drop Downs&quot; to highlight that they exist as I was told my a number of folks that they scrolled right passed them and then tried to figure out where to locate information on the wiki using the content boxes and proceeded to get lost.<br />
<br />
Other minor updates were made to some of the Application Development landing pages to also help improve the ability to locate information. <br />
<br />
This continues to be a work in progress as we work on improving the Community Wiki.  <br />
<br />
Any comments and suggestions you may have are most welcome.  The comments can be around layout, organization, or what is missing.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/47-minor-ingres-community-wiki-refresh.html</guid>
		</item>
		<item>
			<title>What’s Happening with the Ingres JDBC Driver?</title>
			<link>http://community.ingres.com/forum/blogs/teresa/46-whata-s-happening-ingres-jdbc-driver.html</link>
			<pubDate>Fri, 05 Feb 2010 16:36:01 GMT</pubDate>
			<description>The Ingres JDBC team has busy working on new features in the Ingres JDBC Driver for Ingres 10 release. Enhancments include: 
 
* Adding Support for...</description>
			<content:encoded><![CDATA[<div>The Ingres JDBC team has busy working on new features in the Ingres JDBC Driver for Ingres 10 release. Enhancments include:<br />
<ul><li>Adding Support for the following JDBC 4.0 API features:<ul><li>Automatic loading of java.sql.Driver</li>
<li>National Character Set Conversion Support</li>
<li>Enhances Support for BLOB and CLOB</li>
<li>Wrapper pattern</li>
<li>New Scalar Functions</li>
<li>SQLException enhancements</li>
<li>JDBC API changes to existing JDBC interfaces</li>
<li>SQL/XML and XML support</li>
<li>Connection Management</li>
</ul></li>
</ul><blockquote>For more information on the Ingres support of the JDBC 4.0 API features, see <a href="http://community.ingres.com/wiki/Ingres_JDBC_4.0_Support_Project" target="_blank">JDBC 4.0 API Features Implemented.</a><br />
<br />
A Community Preview of the Ingres JDBC Driver (iijdbc.jar) can be found at <a href="http://esd.ingres.com/product/Community_Projects/Drivers/java" target="_blank">Community Preview Download Area.</a></blockquote><ul><li>Boolean Data Type Support. </li>
</ul><blockquote>For more information regarding Ingres’s support of the Boolean Data Type, see <a href="http://community.ingres.com/wiki/SQL_BOOLEAN_type" target="_blank">Boolean Data Type Support.</a><br />
<br />
A Community Preview of the Ingres JDBC Driver (iijdbc.jar) will be available in the future that exposes this support.  An Ingres 10 DBMS and Data Access Server (DAS) are a must to exploit this feature. </blockquote><ul><li>Batch Execution Support.</li>
</ul><blockquote>Batch processing (batch execution actually) is currently supported in the Ingres JDBC Driver but under the covers statements are not actually batched but instead are done as Singleton queries which undermine the performance improvement  expected when batching queries.  The feature was implemented in this manner due to the lack of support in the Ingres DBMS for batch processing.  With Ingres 10, the DBMS will be adding capabilities to handle batch processing and the JDBC Driver will be modified to take advantage of the new Batch feature. This enhancement should significantly improve batch processing in the Ingres JDBC Driver.<br />
<br />
For more information regarding Ingres’s support of Batch Execution in Ingres 10 and the JDBC Driver, see <a href="http://community.ingres.com/wiki/Batch_Statement_Execution_Performance" target="_blank">Batch Statement Execution Performance.</a><br />
<br />
A Community Preview of the Ingres JDBC Driver (iijdbc.jar) will be available in the future that exposes this support.  An Ingres 10 DBMS and Data Access Server (DAS) are a must to exploit this feature.</blockquote>Future blog entries will discuss new updates to the JDBC Driver and Community Previews of the new functionality.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/46-whata-s-happening-ingres-jdbc-driver.html</guid>
		</item>
		<item>
			<title>How to Locate Information About the Ingres JDBC Driver?</title>
			<link>http://community.ingres.com/forum/blogs/teresa/45-how-locate-information-about-ingres-jdbc-driver.html</link>
			<pubDate>Thu, 04 Feb 2010 17:48:22 GMT</pubDate>
			<description>Ever wonder how to find more information on the Ingres JDBC Driver?  There is quite a bit of information on the Ingres Community Wiki...</description>
			<content:encoded><![CDATA[<div>Ever wonder how to find more information on the Ingres JDBC Driver?  There is quite a bit of information on the <a href="http:/community.ingres.com/wiki" target="_blank">Ingres Community Wiki</a> relating to the Ingres JDBC Driver and using Java with Ingres.<br />
<br />
Most of this information is centrally located at <a href="http://community.ingres.com/wiki/Ingres_Java_Development_Center" target="_blank">Ingres Java Development Center</a>.  We try to ensure all content on the wiki related to Java and Ingres can be accessed from this main page.  I’m sure we don’t manage to link up everything but we do try.<br />
<br />
A summary of the type of information that can be found here follows.<br />
<br />
The minimum JRE needed for a particular JDBC Driver version.<br />
<br />
Accessible from this page are:<br />
<br />
•	Articles relating to using Java with Ingres and integration of Ingres with  Java Applications and Application Servers such as JBoss, Apache Tomcat, Weblogic, and Glassfish.  To directly check out all articles see <a href="http://community.ingres.com/wiki/Ingres_Articles#Java" target="_blank">Ingres Java Articles.</a><br />
•	Coding samples relating to using new Ingres features from Java. To directly check out all coding samples see <a href="http://community.ingres.com/wiki/Ingres_Examples#JDBC.2FJava" target="_blank">Ingres Java Coding Samples.</a><br />
•	Presentations around Java and Ingres.  To directly check out all presentations see <a href="http://community.ingres.com/wiki/Ingres_Presentations" target="_blank">Ingres Java related presentations.</a><br />
<br />
More recently the section was updated to clearly document what features where introduced in what JDBC Driver version as well as a comprehensive list of what bugs were addressed in what JDBC patch version. <br />
<br />
We are always looking to add new content to the wiki and encourage you to submit ideas for new content or add new content yourself.<br />
<br />
Outside of the Community wiki, the Connectivity Guide in the Ingres product documentation is the base reference resource for the JDBC driver.<br />
<br />
Questions can always be posted to the <a href="http://community.ingres.com/forum/database-drivers-apis/" target="_blank">Driver Forum.</a><br />
<br />
Feedback is always welcome.</div>

]]></content:encoded>
			<dc:creator>teresa</dc:creator>
			<dc:publisher>26</dc:publisher>
			<guid isPermaLink="true">http://community.ingres.com/forum/blogs/teresa/45-how-locate-information-about-ingres-jdbc-driver.html</guid>
		</item>
	</channel>
</rss>
