Usage

The usage has changed as of v2.0

Example:

// Create a connection
Connection conn = MAPI.getConnection("ip", "database", "username", "password");

// Example columns
Object[] cols = {(Object)"String", (Object)"Column"}; // example column array
Object[] vals = {(Object)"Value 1", (Object)2}; // example value array

// Insert any value
MAPI.insert("table", cols, vals, conn); // insert values

// Select any value

// Select any value
 
to be continued...

Comments

Posts Quoted:
Reply
Clear All Quotes