All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by mariadb with all dependencies

Search JAR files by class name

myslcluscon-driver from group com.github.tomitakussaari (version 0.1.2)

Group: com.github.tomitakussaari Artifact: myslcluscon-driver
Show documentation Show source 
 

0 downloads
Artifact myslcluscon-driver
Group com.github.tomitakussaari
Version 0.1.2
Last update 16. June 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies mysql-connector-java, junit, mockito-all,
There are maybe transitive dependencies!

myscluscon-parent from group com.github.tomitakussaari (version 0.1.2)

JDBC Driver for always connecting to valid server in your Mariadb/Mysql/Galera cluster

Group: com.github.tomitakussaari Artifact: myscluscon-parent
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact myscluscon-parent
Group com.github.tomitakussaari
Version 0.1.2
Last update 16. June 2015
Organization not specified
URL https://github.com/TomiTakussaari/myscluscon
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

tester from group com.github.tomitakussaari (version 0.1.0)

Group: com.github.tomitakussaari Artifact: tester
Show documentation Show source 
 

0 downloads
Artifact tester
Group com.github.tomitakussaari
Version 0.1.0
Last update 16. June 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

myscluscon from group com.github.tomitakussaari (version 0.1.0)

JDBC Driver for always connecting to valid server in your Mariadb/Mysql/Galera cluster

Group: com.github.tomitakussaari Artifact: myscluscon
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact myscluscon
Group com.github.tomitakussaari
Version 0.1.0
Last update 16. June 2015
Organization not specified
URL https://github.com/TomiTakussaari/myscluscon
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

mysqlcluscon-driver from group com.github.tomitakussaari (version 0.1.0)

Group: com.github.tomitakussaari Artifact: mysqlcluscon-driver
Show documentation Show source 
 

0 downloads
Artifact mysqlcluscon-driver
Group com.github.tomitakussaari
Version 0.1.0
Last update 16. June 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies mysql-connector-java, junit, mockito-all,
There are maybe transitive dependencies!

libMariaDB-Manager-java from group com.skysql.java (version 0.5.1)

Common Java library for the components of MariaDB-Manager. This library is used by the Java components of the MariaDB-Manager family, currently these are the MariaDB-Manager-Monitor and the MariaDB-Manager-WebUI.

Group: com.skysql.java Artifact: libMariaDB-Manager-java
Show all versions Show documentation Show source 
 

0 downloads
Artifact libMariaDB-Manager-java
Group com.skysql.java
Version 0.5.1
Last update 25. August 2014
Organization not specified
URL https://github.com/skysql/libMariaDB-Manager-java
License GNU Lesser General Public License, Version 2.1
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

mariadb-socket-factory from group com.google.cloud.sql (version 1.18.0)

Socket factory for the MariaDB JDBC driver that allows a user with the appropriate permissions to connect to a Cloud SQL database without having to deal with IP allowlisting or SSL certificates manually.

Group: com.google.cloud.sql Artifact: mariadb-socket-factory
Show all versions Show documentation Show source 
 

0 downloads
Artifact mariadb-socket-factory
Group com.google.cloud.sql
Version 1.18.0
Last update 16. April 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies jdbc-socket-factory-core, mariadb-java-client,
There are maybe transitive dependencies!

db from group com.intellisrc (version 2.9.1)

Manage databases as MySQL/MariaDB, SQLite, Postgresql, Oracle, SQLServer and more. Create, store and perform CRUD operations to data without having to use SQL (a light-weight implementation as alternative to Hibernate) or use the Fluid SQL builder.

Group: com.intellisrc Artifact: db
Show all versions Show documentation Show source 
 

0 downloads
Artifact db
Group com.intellisrc
Version 2.9.1
Last update 15. April 2024
Organization not specified
URL https://gitlab.com/intellisrc/common
License GNU General Public License v3.0
Dependencies amount 3
Dependencies groovy-extend, etc, reflections,
There are maybe transitive dependencies!

azure-resourcemanager-mariadb from group com.azure.resourcemanager (version 1.0.0-beta.2)

This package contains Microsoft Azure SDK for MariaDB Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Microsoft Azure management API provides create, read, update, and delete functionality for Azure MariaDB resources including servers, databases, firewall rules, VNET rules, log files and configurations with new business model. Package tag package-2020-01-01.

Group: com.azure.resourcemanager Artifact: azure-resourcemanager-mariadb
Show all versions Show documentation Show source 
 

0 downloads
Artifact azure-resourcemanager-mariadb
Group com.azure.resourcemanager
Version 1.0.0-beta.2
Last update 18. January 2023
Organization not specified
URL https://github.com/Azure/azure-sdk-for-java
License The MIT License (MIT)
Dependencies amount 2
Dependencies azure-core, azure-core-management,
There are maybe transitive dependencies!

pax-jdbc-itest from group org.ops4j.pax.jdbc (version 1.5.7)

To run all integration tests, you need to set up all the databases: 1) Derby: $ export DERBY_HOME=/path/to/db-derby-10.14.2.0-bin $ cd $DERBY_HOME $ mkdir databases; cd databases $ java -jar $DERBY_HOME/lib/derbyrun.jar server start 2) MS SQL Server (for official and jtds drivers): $ podman run -itd --name pax.jdbc.sqlserver -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=PaxJdbc!(*67' -e 'MSSQL_PID=Express' \ -p 1433:1433 -d mcr.microsoft.com/mssql/server:2022-latest 3) MariaDB: $ podman run --name pax.jdbc.mariadb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=paxjdbc -d mariadb 4) MySQL: $ podman run --name pax.jdbc.mysql -p 3307:3306 -e MYSQL_ROOT_PASSWORD=paxjdbc -d mysql 5) PostgreSQL: $ podman run --name pax.jdbc.postgresql -e POSTGRES_USER=paxjdbc -e POSTGRES_PASSWORD=paxjdbc -p 5432:5432 -d postgres:latest 6) Oracle (a bit unofficial): $ podman run -itd --name pax.jdbc.oracle -p 1521:1521 --privileged=true oracleinanutshell/oracle-xe-11g

Group: org.ops4j.pax.jdbc Artifact: pax-jdbc-itest
Show all versions 
 

0 downloads
Artifact pax-jdbc-itest
Group org.ops4j.pax.jdbc
Version 1.5.7
Last update 25. March 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 9
Dependencies org.apache.felix.configadmin, org.apache.aries.util, org.apache.aries.transaction.manager, derby, derbynet, derbyclient, org.apache.servicemix.bundles.jasypt, org.apache.servicemix.bundles.cglib, org.apache.servicemix.bundles.c3p0,
There are maybe transitive dependencies!



Page 10 from 11 (items total 103)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy