David Hamann

Results 12 comments of David Hamann

Sorry, very busy lately and no time to spend on the docs. The code itself has lots of comments that could help in figuring out how to use it (find...

Thanks for the PR. A couple of remarks: * The added `super()` in `server.py` currently uses tabs as indentation, leading to a TabError exception and breaking the code * We...

Currently, everything is a `FileMakerError`, but you can already get the error code directly from the `Server.last_error` property (returns an int, no need to parse text). Example: ``` fms =...

There should be numerous ways to do it. For example with the `portals` parameter to `create_record`, or multiple calls to `create_record` in the context of the portal's TO, or running...

The `create_record` method has a `portals` parameter you could use to create such data. For example: ``` {'my_portal': [ {'TO::field': 'hello', 'TO::field2': 'world'}, {'TO::field': 'another record'} ] ``` So something...

Are you sure the error 101 is a result of the `create_record` call? It looks like it occurs in a different place!? Can you check if the related record was...

You mean dynamically set the relationship's attributes? You cannot do that via the Data API. In general: In some situations it might preferable or even required to create related records...

Not sure I follow. If you haven't done so, I would suggest having separate layouts for the Data API access and end-user access, so that you can modify the end-user...

Thanks for the issue and PR, and sorry it took some time to respond. To be honest, I never had the need to use multiple inheritance with fmrest, that's why...

Hi André, No, this is not possible, unfortunately. The Data API is only available with FileMaker Server, not the client. For your use-case you might be able to use the...