Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dbix::class::storage::dbi::access(3) [osx man page]

DBIx::Class::Storage::DBI::ACCESS(3)			User Contributed Perl Documentation		      DBIx::Class::Storage::DBI::ACCESS(3)

NAME
DBIx::Class::Storage::DBI::ACCESS - Support specific to MS Access DESCRIPTION
This is the base class for Microsoft Access support. This driver supports last_insert_id, empty inserts for tables with "AUTOINCREMENT" columns, nested transactions via auto_savepoint, "GUID" columns via DBIx::Class::Storage::DBI::UniqueIdentifier. SUPPORTED VERSIONS
This module has currently only been tested on MS Access 2010. Information about how well it works on different version of MS Access is welcome (write the mailing list, or submit a ticket to RT if you find bugs.) USING GUID COLUMNS
If you have "GUID" PKs or other "GUID" columns with auto_nextval you will need to set a new_guid callback, like so: $schema->storage->new_guid(sub { Data::GUID->new->as_string }); Under Catalyst you can use code similar to this in your Catalyst::Model::DBIC::Schema "Model.pm": after BUILD => sub { my $self = shift; $self->storage->new_guid(sub { Data::GUID->new->as_string }); }; AUTHOR
See "AUTHOR" in DBIx::Class and "CONTRIBUTORS" in DBIx::Class. LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.16.2 2012-08-16 DBIx::Class::Storage::DBI::ACCESS(3)

Check Out this Related Man Page

DBIx::Class::Storage::DBI::UniqueIdentifier(3)		User Contributed Perl Documentation	    DBIx::Class::Storage::DBI::UniqueIdentifier(3)

NAME
DBIx::Class::Storage::DBI::UniqueIdentifier - Storage component for RDBMSes supporting GUID types DESCRIPTION
This is a storage component for databases that support GUID types such as "uniqueidentifier", "uniqueidentifierstr" or "guid". GUIDs are generated automatically for PK columns with a supported data_type, as well as non-PK with auto_nextval set. METHODS
new_guid The composing class must set "new_guid" to the method used to generate a new GUID. It can also set it to "undef", in which case the user is required to set it, or a runtime error will be thrown. It can be: string In which case it is used as the name of database function to create a new GUID, coderef In which case the coderef should return a string GUID, using Data::GUID, or whatever GUID generation method you prefer. It is passed the $self DBIx::Class::Storage reference as a parameter. For example: $schema->storage->new_guid(sub { Data::GUID->new->as_string }); AUTHOR
See "AUTHOR" in DBIx::Class and "CONTRIBUTORS" in DBIx::Class. LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.18.2 2013-12-16 DBIx::Class::Storage::DBI::UniqueIdentifier(3)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Similar Forum for MS Access?

I know this has nothing to do with Unix but find this forum very useful. Was just wondering if anyone knows of any MS Access forums? Thanks (2 Replies)
Discussion started by: vcardo10
2 Replies

2. UNIX for Dummies Questions & Answers

what is SUID/GUID bits in UNIX/Solaris

Hi, I have a Oracle Database on Solaris 5.10 . Following file are showing with SUID/GUID bits . -rwsr-xr-x root dba /optware/oracle/10.2.0.2/db/bin/extjob What will happen if this is changed to oracle dba . I need to know the will there be a effect if the owner of extjob is... (3 Replies)
Discussion started by: reply2soumya
3 Replies

3. Solaris

Veritas Storage Question (Data Migration)

Using Solaris 10 with Veritas Storage Foundation running. I want to copy all contents from DISKA LUN1 to DISKB LUN2. What would be the command syntax to do this? (0 Replies)
Discussion started by: soupbone38
0 Replies

4. UNIX for Dummies Questions & Answers

what is SUID,GUID and Sticky bit?

Dear all, what is SUID,GUID and Sticky bit permission? can anyone gave me explanation with example? thanks in advance.. (2 Replies)
Discussion started by: masthan25
2 Replies

5. AIX

New to San Storage

Can anyone recommend a good book on san storage basics and how it communicates with an AIX server? (1 Reply)
Discussion started by: NycUnxer
1 Replies