MyApi

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 :

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

Posts Quoted:
Reply
Clear All Quotes

About This Project

Categories

Members

Recent Files

Bukkit