NAME
Net::FileMaker - Interact with FileMaker Server
VERSION
Version 0.01
SYNOPSIS
Perhaps a little code snippet.
use Net::FileMaker;
my $fms = Net::FileMaker->new('http://fmserver', 'username', 'pass');
my $dbs = $fms->get_databases;
my $layouts = $fms->get_layouts('database');
METHODS
new($host,$user,$pass)
Creates a new object. Username and password are not mandatory if you're just planning on calling get_databases, else you'll be required to supply it pending the permissions of your setup.
NOTE: This will most likely change in future versions.
get_databases()
Lists all XML enabled databases for a given host. This method is the only one that doesn't require authentication.
get_layouts($database)
Returns all layouts accessible for the respective database.
total_rows($database, $layout)
Returns a scalar with the total rows for a given database and layout.
find_all($database, $layout, %options)
Returns all rows on a specific database and layout.
AUTHOR
Squeeks, <squeek at cpan.org>
BUGS
This distrobution is in it's early stages and things will be prone to breaking and changing in future versions. Please keep an eye out on the change log and the documentation of new releases before submitting bug reports.
Please report any bugs or feature requests to bug-net::filemaker at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net::FileMaker. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. Please ensure to include the version of FileMaker Server in your report.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Net::FileMaker
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
DEVELOPMENT
Everyone is welcome to help towards the project with bugfixes, feature requests or contributions. You'll find the git repository for this project is located at http://github.com/squeeks/Net-FileMaker.
LICENSE AND COPYRIGHT
Copyright 2010 Squeeks.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.