GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::Shakan::Model::DBIxSkinny(3) User Contributed Perl Documentation HTML::Shakan::Model::DBIxSkinny(3)

HTML::Shakan::Model::DBIxSkinny - DBIx::Skinny binding for HTML::Shakan

    # create form object
    my $form = HTML::Shakan->new(
        request => CGI->new(),
        fields => [
            TextField(
                name => 'foo',
            ),
        ],
        model => HTML::Shakan::Model::DBIxSkinny->new()
    );

    # fillin_form
    $form->model->fill($row);

    # insert
    $form->model->create($skinny => $table);

    # update
    $form->model->update($row);

This is DBIx::Skinny binding for HTML::Shakan.You can easy to insert/fill/update by HTML::Shakan.

$form->model->fill($row);
fill the $row data to form.$row is instance of row class of DBIx::Skinny.
my $row = $form->model->create($skinny, $table);
insert form data to $table.
my $row = $form->model->insert($skinny, $table);
insert method is synonym of create method.
$form->model->update($row);
update $row by form data.

DBIx::Skinny, HTML::Shakan
2022-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.