java/jdbc-loopback-driver/pom.xml
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Jul 2020 17:25:19 +0200
branchv_0
changeset 252 a9d4a8d5c57f
parent 244 6bdb45af26d9
permissions -rw-r--r--
improve multiple results support The specification talks exactly about -1: > Returns: the current result as an update count; > -1 if the current result is a ResultSet object or there are no more results Other negative numbers can theoretically mean something different than „no more results“ e.g. unknown number of updates (?).

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>info.globalcode.sql.dk</groupId>
	<artifactId>jdbc-loopback-driver</artifactId>
	<version>0.11-SNAPSHOT</version>
	<packaging>jar</packaging>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
		<maven.compiler.target>1.8</maven.compiler.target>
	</properties>
</project>