Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying MariaDB Cookbook
  • Table Of Contents Toc
MariaDB Cookbook

MariaDB Cookbook

By : Daniel Bartholomew
4.2 (9)
close
close
MariaDB Cookbook

MariaDB Cookbook

4.2 (9)
By: Daniel Bartholomew

Overview of this book

Table of Contents (20 chapters)
close
close
MariaDB Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1
Index

Inserting data using HandlerSocket and PERL


To insert data with HandlerSocket, we need to use a different port, but we still use the execute_single command with extra options.

Getting ready

Complete the Reading data using HandlerSocket and PERL recipe before starting this recipe.

How to do it...

  1. Create a file named hs_insert_test.pl with the following content (this script is also available on the book's website):

    #!/usr/bin/perl
    use strict;
    use warnings;
    
    use Net::HandlerSocket;
    my $write_args = { host => 'localhost', port => 9999 };
    my $hsw = new Net::HandlerSocket($write_args);
    
    my $resw = $hsw->open_index(1, 'test', 'hs_test', 'PRIMARY', 'id,givenname,surname');
      die $hsw->get_error() if $resw != 0;
    
    $resw = $hsw->execute_single(1, '+', [ '7', 'Sylvester', 'McCoy' ],0,0);
      die $hsw->get_error() if $resw->[0] != 0;
    
    $resw = $hsw->execute_single(1, '+', [ '8', 'Paul', 'McGann' ],0,0);
      die $hsw->get_error() if $resw->[0] != 0;
    
    $hsw->close(); 
    
  2. Run the file...

CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
MariaDB Cookbook
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon