Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • MariaDB Cookbook
  • Toc
  • feedback
MariaDB Cookbook

MariaDB Cookbook

By : Daniel Bartholomew
4.2 (9)
close
MariaDB Cookbook

MariaDB Cookbook

4.2 (9)
By: Daniel Bartholomew

Overview of this book

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

Updating and deleting data using HandlerSocket and Python


Updating and deleting data is similar to but not quite the same as inserting data.

Getting ready

Complete the Inserting data using HandlerSocket and Python recipe prior to starting this recipe.

How to do it...

  1. Launch the interactive Python interpreter in a terminal window as follows:

    python
    
  2. Run the following commands in the Python interpreter:

    from pyhs.sockets import WriteSocket
    hsu = WriteSocket([('inet', '127.0.0.1', 9999)])
    u_id = hsu.get_index_id('test', 'hs_test', ['givenname'])
    hsu.find_modify(u_id, '=', ['3'],'U',['Jon'],10,0)
    
  3. Then, run the following commands in the Python interpreter to open new read and write connections to our test table:

    from pyhs.sockets import ReadSocket
    hsr = ReadSocket([('inet', '127.0.0.1', 9998)])
    r_id = hsr.get_index_id('test', 'hs_test', ['id', 'givenname', 'surname'])
    
    from pyhs.sockets import WriteSocket
    hsd = WriteSocket([('inet', '127.0.0.1', 9999)])
    d_id = hsd.get_index_id('test', 'hs_test', ...

Unlock full access

Continue reading for free

A Packt free trial gives you instant online access to our library of over 7000 practical eBooks and videos, constantly updated with the latest in tech
bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete