We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have three ways of interacting with remote systems:
Setting a relationship that points to another system
Using a RemoteDatabase
Using another DJ as a Database
The text was updated successfully, but these errors were encountered:
implementation notes
@Override public Map<String, Object> connectAndCollectMetadata() throws Exception { Map<String, Object> res = (Map<String, Object>) call("crud/config/dj-database/" + e("dj/" + this.database), null); res = (Map<String, Object>) res.get("tables"); for (Entry<String, Object> entry : res.entrySet()) { Map<String, Object> table = (Map<String, Object>) entry.getValue(); table.put("parent", ID); table.put("ID", ID + "/" + e(entry.getKey())); // TODO: change props also } System.out.println(res); return res; }
Sorry, something went wrong.
if possible, integrate this into the RemoteDatabase driver
No branches or pull requests
We have three ways of interacting with remote systems:
Setting a relationship that points to another system
Using a RemoteDatabase
Using another DJ as a Database
The text was updated successfully, but these errors were encountered: