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 ?
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 ?
Copyright © 2021 Jogjafile Inc.
Use a ref path (
@/db
) andDb.*
functions ( http://doc.opalang.org/module/stdlib.core.db/Db )