Minecraft MyApi mod 2026 download
logo
minecraft mod MyApi

MyApi

Game Version: 1.8.1
Total Downloads: 1,024
Updated: Nov 17, 2015
Created: Aug 18, 2014
Download MyApiDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
MyApi 1.3 release 20.09 KB Nov 17, 2015 1.8.1 247 download MyApi MyApi 1.3 releaseDownload
MyApi 1.2.1 release 20.65 KB Mar 17, 2015 1.8.1 226 download MyApi MyApi 1.2.1 releaseDownload
MyApi 1.2 release 20.65 KB Mar 4, 2015 1.8.1 136 download MyApi MyApi 1.2 releaseDownload
MyApi 1.1 release 17.99 KB Oct 7, 2014 CB 1.7.9-R0.2 232 download MyApi MyApi 1.1 releaseDownload
MyApi 1.0 release 15.44 KB Aug 22, 2014 1.7.2 183 download MyApi MyApi 1.0 releaseDownload

Description

Share this:

MyApi_logo
Hello everyone, this library is named for MyApi -> MySQL API.

It allows you to manage data without worrying about the syntax of the SQL database.
PS – Of course,this library is not going to manage a database. You will need at least a knowledge database.

Here is an example when I want to create a table in my database (Here the table is 'Players' and will 'ID' and 'PlayerName' as columns.)

List <Columns> listColomns = new ArrayList <Columns> (); 
Columns colomn = new Columns ("ID", TypeData.INT, 0, false, true, true); 
listColomns.add (colomn); 
colomn = new Columns ("PlayerName" TypeData.STRING, 254, false, false, false); 
listColomns.add (colomn); 
myapi.createTable ("Players", listColomns, true);

Projects using this library :

  • BankX

Sources:

MyApi is open source and these are available here:

Github

Wiki:

The wiki bookstore is available here (English and french.): https://github.com/como89/MyApi/wiki

Javadoc:

The Javadoc is available here: http://como89.github.io/MyApi/doc/

Suggestions, questions, bugs?

If you have any suggestions, questions or you found a bug, please let me know! 😉

Comments

Add a comment