Opa : passing database as function parameters

135 Views Asked by At

I'd like to pass a database to an opa function. I've tried the following code, but it doesn't work :

database int /db1;
database int /db2;


function add(db, int i)
{
        db = i
}


add(db1, 12)
add(db2, 42)

You can I do that ?

1

There are 1 best solutions below

0
On BEST ANSWER

Use a ref path (@/db) and Db.* functions ( http://doc.opalang.org/module/stdlib.core.db/Db )

database int /db1;
database int /db2;

function add(db, int i)
{
    Db.write(db, i)
}

add(@/db1, 12)
add(@/db2, 42)