{% extends "../../layout.html" %} {% block sectionClasses %}plugins hasBreadCrumb plugins-spincast-jdbc{% endblock %} {% block meta_title %}Plugins - Spincast JDBC{% endblock %} {% block meta_description %}Spincast JDBC plugin for easy SQL queries and transactions.{% endblock %} {% block scripts %} {% endblock %} {% block body %}

Overview

This plugin allows easy SQL queries and transactions.

A full JDBC / SQL section is dedicated to this plugin in the documentation!

Installation

1. Add this Maven artifact to your project:

<dependency>
    <groupId>org.spincast</groupId>
    <artifactId>spincast-plugins-jdbc</artifactId>
    <version>{{spincast.spincastCurrrentVersion}}</version>
</dependency>

2. Add an instance of the SpincastJdbcPlugin plugin to your Spincast Bootstrapper: {% verbatim %}


Spincast.configure()
        .plugin(new SpincastJdbcPlugin())
        // ...

{% endverbatim %}

Plugin class

The class implementing the SpincastPlugin interface is SpincastJdbcPlugin.

Javadoc

{% endblock %}