Skip to content

Releases: 360matt-archives/CitronDB

Full reformat performances

08 Jul 17:25
8e703b5
Compare
Choose a tag to compare
  • Removed RowBuilder (use Map<String, Object> instead)
  • removed all StringJoiner (used StringBuilder now)
  • less instanciation of StringBuilder (used unique instance for entire method)
  • more field count checker

Java 8+

Moved package

12 May 11:08
7b32730
Compare
Choose a tag to compare

wtf.listenia --> fr.i360matt

Fixed bugs

04 Apr 12:25
Compare
Choose a tag to compare

Fixed bugs for:

  • getLine( RowBuilder )
  • update( Rw, Rw )

Functionnalities:
Tables:

  • create table
  • delete table
  • get lines as structure
  • create lines as structure
  • check if line exist
  • modify data of lines ( UPDATE ) with pattern

Legacy:
TableManager#getConnection() If you want to get the database connection.

Fully functional

21 Mar 19:24
4c27587
Compare
Choose a tag to compare

/!\ Contains some bugs

Fully functional

21 Mar 15:21
Compare
Choose a tag to compare

Tables:

  • create table
  • delete table
  • get lines as structure
  • create lines as structure
  • check if line exist
  • modify data of lines ( UPDATE ) with pattern

Legacy:
TableManager#getConnection() If you want to get the database connection.

First release

13 Dec 20:02
Compare
Choose a tag to compare

Include JDBC driver for MySQL.

With tables, we can:

  • create or delete many table
  • change their structure

And with rows we can:

  • Insert one row
  • Insert multiple row in one request
  • Remove one row
  • All inserts and remove are asynchronous
  • Get rows by RowBuilder pattern
  • Choose the number of rows you want get