Add support for SQL::Statement-based DBDs
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / TreeData.pm
diff --git a/lib/DBIx/Class/Storage/DBI/TreeData.pm b/lib/DBIx/Class/Storage/DBI/TreeData.pm
new file mode 100644 (file)
index 0000000..639ca91
--- /dev/null
@@ -0,0 +1,31 @@
+package DBIx::Class::Storage::DBI::TreeData;
+
+use base 'DBIx::Class::Storage::DBI::SQL::Statement';
+use mro 'c3';
+use namespace::clean;
+
+1;
+
+=head1 NAME
+
+DBIx::Class::Storage::DBI::TreeData - Support for JSON-like tree data via DBD::TreeData
+
+=head1 SYNOPSIS
+
+This subclass supports JSON-like tree tables via L<DBD::TreeData>.
+
+=head1 DESCRIPTION
+
+This subclass is essentially just a stub that uses the super class
+L<DBIx::Class::Storage::DBI::SQL::Statement>.  Patches welcome if
+anything specific to this driver is required.
+
+=head1 AUTHOR
+
+See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut
\ No newline at end of file