xtra 0.2.1 copy "xtra: ^0.2.1" to clipboard
xtra: ^0.2.1 copied to clipboard

Some xtra useful datatypes, currently XTable and XSet, a set of XTables are usable.

Some xtra useful datatypes. Currently in delevlopment.

Implemented Datatypes:

  • XSet, emulates a database, holds collection of tables
  • XTable, emulates a database table
  • XColumn, used by XTable to represent Columns
  • XRow, used by XTable to represent Rows

Usage #

XSet xSet = XSet("MyXSet");

xSet.addXTable("MyXTable");

xSet.tables["MyXTable"].addXColumn("Index", int, autoInc: true);
xSet.tables["MyXTable"].addXColumn("First Name", String);
xSet.tables["MyXTable"].addXColumn("Last Name", String);

xSet.tables["MyXTable"].addXRow({"First Name": "John", "Last Name": "Doe"});

print(xSet.tables["MyXTable"].rows[0]);

Output: {Index: 0, First Name: John, Last Name: Doe}

Additional information #

Currently maintained by Dorylinae Studios™ Contact: dorylinae.studios@gmail.com

3
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Some xtra useful datatypes, currently XTable and XSet, a set of XTables are usable.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on xtra