@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns1:	<http://data.openlinksw.com/oplweb/product_category_feature/PreparedStatementPoolingsupport#> .
@prefix OpenLink:	<http://www.openlinksw.com/schemas/oplweb#> .
ns1:this	rdf:type	OpenLink:ProductCategoryFeature .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
ns1:this	rdfs:label	"Prepared Statement Pooling support" ;
	OpenLink:Description	"Prepared Statement Pooling support" .
@prefix ns4:	<http://data.openlinksw.com/oplweb/product_benefit/SophisticatedApplicationFunctionality#> .
ns1:this	OpenLink:isOfProductBenefit	ns4:this .
@prefix ns5:	<http://data.openlinksw.com/oplweb/product_feature_category/StandardsCompliance#> .
ns1:this	OpenLink:isOfProductFeatureCategory	ns5:this .
@prefix ns6:	<http://data.openlinksw.com/oplweb/product_category/jdbc#> .
ns1:this	OpenLink:isOfProductCategory	ns6:this .
@prefix ns7:	<http://purl.org/dc/terms#> .
ns1:this	ns7:description	"A prepared statement allows you to take a commonly used SQL statement and pre-compile it, thereby dramatically improving performance if the statement is executed multiple times. If your applications has many queries that are reused with only parametic changes occuring, then it is beneficial to pool this statements and retain control over their life span. JDBC 3.0 delivers as solution to this need via Prepared Statement Pooling, which enables the life span of a prepared statement to be handled at the driver level thereby alleviating the JDBC application or service developer of this responsibility." ;
	OpenLink:isFeatureOf	ns6:this .
@prefix opl:	<http://www.openlinksw.com/schema/attribution#> .
ns1:this	opl:isDescribedUsing	rdfs: ,
		ns7: ,
		OpenLink: .