filemaker

IDbReader throwing exceptions for existing columns

随声附和 提交于 2019-12-12 03:35:47
问题 I'm trying to reader values from a System.Data.Odbc.OdbcDataReader. The problem with it is that it simply doesn't work. When I try to get a value from an existing column (field), it throws an exception. In my cae, FieldCount is 8 , but, for instance, a if I invoke reader.IsDBNull(4), it throws. For values column ids from 0 to 2, it retrieves the correct value. But reader[3] to reader[7], an exception is thrown with no information of what happened. Even worse, this code (GetName) also throws

XSLT stylesheet drops children instead of renaming them

 ̄綄美尐妖づ 提交于 2019-12-12 02:15:17
问题 I have some pretty gnarly XML that was exported from Filemaker. There is a great post that almost answers my question (XSLT question. How to pair field tags with data when original XML has them in separate sections?). The xslt stylesheet from that post elegantly renames the ugly original xml with the names keyed in the <meta> field. That's great, except if you look below you will see that each row has multiple elements that should be named batchID , batchPartnerID and batchPartnerName .

Filemaker Pro: Create multiple entries of a table with Tab Control

心不动则不痛 提交于 2019-12-12 01:45:02
问题 I'm currently designing a Filemaker Pro database for a clinical trial. The relationship between my different tables are done. To simplify my issue, let say I've two tables. I've a "info" table with the PatientID and general informations about this patient and I have another table with "day" results. The "info" and "day" tables are linked by a PatientID field. The "day" table has a variable "dayID" for discerning the collecting day of the data. We're going to collect data for this patient

How to pass data from a FileMaker field to an Applescript

喜欢而已 提交于 2019-12-11 19:39:21
问题 I need to delete a file off of my Cincinnati Laser from FileMaker. It gets it there via a FMScript that export field contents of a container to this location. So I know the file name and the path its all built in a calculation field on that record. But I don't know how to get that info into an Applescript using the FM12 "Perform AppleScript" script step When I hard code the path and file name (Shown Below) it works. set xpath to "Titanium Brain:Users:smartin:Desktop:Laser:1512-clr-c.cnc" tell

Track Modification History in Filemaker Databases

我与影子孤独终老i 提交于 2019-12-11 06:57:13
问题 Is there a way to store all timestamps and details of modifications of fields in a table automatically in Filemaker Pro 13? ie is there an easy option somewhere that Filemaker provides, or must I do this programmatically / manually? 回答1: Ray Cologon, PhD and allround FileMaker superstar, wrote a custom function that works well for us. It is free to use, but you must have a copy of FileMaker Pro Advanced to install the custom function. http://www.nightwing.com.au/FileMaker/demosX/demoX01.html

Filemaker GetAs…How to display Container Field on webpage?

倾然丶 夕夏残阳落幕 提交于 2019-12-10 23:48:52
问题 I have an ASP.Net application that needs to display an image that is stored in a Filemaker Container field. My query statement looks like: SELECT GetAs(Image, 'JPG') FROM UA_Item_Pictures WHERE "Stock Number" = 33989 AND ImageOrder = 1 According to the documentation: The possible file types (case sensitive) you can retrieve from a container field in a FileMaker database file are: 'EMBO' OLE container data 'PDF ' Portable Document Format 'EMF+' Windows Enhanced Metafile Plus 'PICT' Mac OS

XSLT to translate Zotero xml output to FMPXMLRESULT xml?

ぐ巨炮叔叔 提交于 2019-12-08 18:10:27
I need to get items from a Zotero database into FileMaker Pro. The most obvious way to do that is to export from Zotero into xml, translate that xml into the FMPXMLRESULT xml format, and then import into FileMaker Pro. I'm a complete newbie to dealing with translating xml formats. Does anybody have an xslt that will do that, or to provide me with some suggestions specific to these two xml formats (not just general xslt/xml references)? The Zotero xml output is in the Library of Congress MODS form: http://www.loc.gov/standards/mods/ . The FileMaker Pro FMPXMLRESULT xml format is described here:

SQL and Filemaker Pro 13 working together

二次信任 提交于 2019-12-08 09:12:05
问题 I've been handed an interesting question in that an Apple centric user would be keen to run databases on Filemaker Pro and we already have several running on MS SQL. FM Pro is visually stunning and as a front end to work with customers would look good, but I'm more SQL at heart. Does anybody use both? Can you easily run tasks between SQL and FM Pro to update data to FM Pro (say overnight)? Has anybody made the change from SQL to FM Pro for any purpose and found it to be ok? Thanks in advance

Filemaker with PHP

泄露秘密 提交于 2019-12-08 02:18:11
问题 Im using Filemaker API in PHP to retrieve the records from Filemaker Pro 11 Advance Database. But its showing error: Error: Communication Error: (22) The requested URL returned error: 404 - This can be due to an invalid username or password, or if the FMPHP privilege is not enabled for that user. Though I have set all Extend Privileges and gave it to user. Please anyone can help me... 回答1: Although you mention you've taken care of this, whenever I've come across this problem it's been because

Sending data from AppleScript to FileMaker records

*爱你&永不变心* 提交于 2019-12-08 02:13:49
问题 I'm computing some data in AppleScript that I'd like to then insert into a specific FileMaker record. Here's my AppleScript: on sendDataToFM(FileNameWithExtension, ClipLength) tell application "FileMaker Pro Advanced" show every record of database 1 show (every record whose cell "File Name" = FileNameWithExtension) repeat with i from 1 to (count record) set MatchingRecord to record i set data cell "CLIP LENGTH" of MatchingRecord to ClipLength end repeat end tell end sendDataToFM ... my