JsonDocumentRecords ================== .. py:function:: model.AddUpdateJsonRecord(json, section, pk1, pk2, pk3, pk4) :param str json: JSON string to store :param str section: Section identifier for the record :param object pk1: Primary key value 1 (required) :param object pk2: Primary key value 2 (optional) :param object pk3: Primary key value 3 (optional) :param object pk4: Primary key value 4 (optional) Adds or updates a JSON document record using the provided JSON string. .. py:function:: model.AddUpdateJsonRecord(data, section, pk1, pk2, pk3, pk4) :param DynamicData data: Dynamic data object to store as JSON :param str section: Section identifier for the record :param object pk1: Primary key value 1 (required) :param object pk2: Primary key value 2 (optional) :param object pk3: Primary key value 3 (optional) :param object pk4: Primary key value 4 (optional) Adds or updates a JSON document record using the provided DynamicData object. .. py:function:: model.DeleteJsonRecord(section, pk1, pk2, pk3, pk4) :param str section: Section identifier for the record :param object pk1: Primary key value 1 (required) :param object pk2: Primary key value 2 (optional) :param object pk3: Primary key value 3 (optional) :param object pk4: Primary key value 4 (optional) Deletes a JSON document record with the specified section and key values. .. py:function:: model.DeleteJsonRecordSection(section) :param str section: Section identifier for the records to delete Deletes all JSON document records belonging to the specified section. .. py:function:: model.SqlListDynamicData(sql, metadata) :param str sql: SQL query to execute :param DynamicData metadata: Optional metadata for type conversion :return: List of DynamicData objects from query results :rtype: List[DynamicData] Executes an SQL query and returns the results as a list of DynamicData objects. .. py:function:: model.SqlTop1DynamicData(sql, metadata) :param str sql: SQL query to execute :param DynamicData metadata: Optional metadata for type conversion :return: First row from query results as a DynamicData object, or null if no rows returned :rtype: DynamicData Executes an SQL query and returns the first row as a DynamicData object. .. py:function:: model.SqlList(sql) :param str sql: SQL query to execute :return: List of dynamic objects from query results :rtype: List[dynamic] Executes an SQL query and returns the results as a list of dynamic objects.