mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

809
active users

#jdbc

0 posts0 participants0 posts today

Connecting to Databases with Python jaydebeapi: A Comprehensive Guide
Learn how to connect to databases using Python's jaydebeapi library. This powerful tool bridges Python with Java Database Connectivity (JDBC), enabling access to various databases like MySQL and Oracle. Perfect for when native Python drivers aren't available. #Python #Databases #Jaydebeapi #JDBC #MySQL #Oracle
tech-champion.com/programming/
...

IBM iSeries Database Migrator: Troubleshooting Connection Issues and Solutions
Troubleshooting IBM iSeries Database Migrator connection issues? This guide provides practical solutions & best practices for smooth database migration. Learn to resolve common connection errors & successfully migrate your database! #IBMiseries #DatabaseMigration #DB2LUW #JDBC #Troubleshooting #SQL
tech-champion.com/database/db2

This is really cool and kinda insane—running modern #Perl on the #Java Virtual Machine (#JVM).

Why? Maybe you want the flexibility of Perl scripts in your JVM-based environment (including #Kotlin and #Scala) without shelling out. More reasons here: github.com/fglock/PerlOnJava/b

Anything with #XS or #FFI C code has to be ported to Java, mind you. But @fglock has been doing just that, e.g., #DBI support via #JDBC and #JSON via fastjson2.

mastodon.social/@fglock/113034

Eine Graph-Datenbank, eine 27 Jahre alte Spezifikation und GenAI gehen in eine Bar… (A graph-database, a 27 year old spec and GenAI walk into a bar)

2024 endlich noch mal auf der #JAX und werde über #Neo4j #JDBC und einen #RAG Usecase sprechen, den ich ganz cool finde…
Jep, ich bringe eine Liste mit kritischen Leseempfehlungen, nein, ich werd das ganze Zeug nicht hinter unnütz komplizierten Akronymen verstecken und ich freu mich sehr auf Diskussionen:

jax.de/big-data-machine-learni

JAXGenAI trifft Graph-Datenbank: RAG mit Neo4j - JAX

I wrote about the new #JDBC #Driver for #Neo4j and sorry, it's on Medium… I cannot fix everything.

There's a bunch of cool stuff innit, among others the #SQL to #Cypher translation we build and the LLM based natural language to Cypher bits by @meistermeier

medium.com/neo4j/neo4j-jdbc-dr

Neo4j Developer Blog · Neo4j JDBC Driver Version 6 - Neo4j Developer Blog - MediumBy Michael Simons

OK, I have maybe the most Hail Mary question ever asked but it's worth a go. My work day has been plagued by memory issues in the web servers, and the problem was that 3 different @Lob fields in the database were corrupted with the inclusion of repeated sequences of the text below.

The fields were in 3 different client accounts, in a database with no public IP and which needs an SSH key to get to. Also the Lobs were made so large (50meg or thereabouts) they caused severe performance issues. So I don't think we were hacked.

But then, what happened? The objects containing the Lobs were definitely written by our code, but those particular fields were not modified - one was in my own account, and no way was I logging in to corrupt data on a Sunday.

My best guess is that some out of memory condition caused the Lobs to be copied incorrectly? Maybe the JDBC driver got corrupted? I would add code to check for this sort of thing, but it would help if I knew where to look, so any ideas are welcome.