I hereby claim:
- I am davecramer on github.
- I am davecramer (https://keybase.io/davecramer) on keybase.
- I have a public key ASAvjugRqEE1RIF0U5sm0SOEcbbEw69lBgEikr-tfNKOZwo
To claim this, I am signing this object:
| { | |
| "apiVersion": "v1", | |
| "kind": "PersistentVolume", | |
| "metadata": { | |
| "name": "symmetric-engines", | |
| "labels": { | |
| "name": "symmetric-ds" | |
| } | |
| }, | |
| "spec": { |
I hereby claim:
To claim this, I am signing this object:
| CREATE TABLE usecase01 ( | |
| testcolumn text[][] | |
| ); | |
| CREATE FUNCTION usecase01_get() | |
| RETURNS TABLE | |
| ( | |
| testcolumn text[][] | |
| ) | |
| AS $$ |
| package ca.credativ.jdbc; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.jdbc.core.SqlOutParameter; | |
| import org.springframework.jdbc.core.namedparam.MapSqlParameterSource; | |
| import org.springframework.jdbc.core.simple.SimpleJdbcCall; | |
| import org.springframework.jdbc.core.support.JdbcDaoSupport; | |
| import org.postgresql.jdbc4.Jdbc4Array; | |
| import org.springframework.stereotype.Repository; |
| package ca.credativ.jdbc; | |
| /** | |
| * Created by davec on 2014-04-16. | |
| */ | |
| public interface PostgresArray | |
| { | |
| String[] get() throws Exception; | |
| } |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:tx="http://www.springframework.org/schema/tx" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans | |
| http://www.springframework.org/schema/beans/spring-beans-3.2.xsd | |
| http://www.springframework.org/schema/context | |
| http://www.springframework.org/schema/context/spring-context-3.2.xsd | |
| http://www.springframework.org/schema/tx |
| package ca.credativ.jdbc; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.context.ApplicationContext; | |
| import org.springframework.context.support.ClassPathXmlApplicationContext; | |
| import java.sql.Array; | |
| /** | |
| * Created by davec on 2014-04-16. |