Showing headlines posted by abhishekk

Tips & Tricks on MySQL for Python

  • www.packtpub.com; By Albert Lukaszewski (Posted by abhishekk on Dec 30, 2010 11:42 AM EDT)
  • Story Type: Tutorial; Groups: MySQL
Python is a dynamic programming language, which is completely enterprise ready, owing largely to the variety of support modules that are available to extend its capabilities. In order to build productive and feature-rich Python applications, we need to use MySQL for Python, a module that provides database support to our applications. In this article, we will have a look at the tips and tricks presented thru-ought on MySQL for Python.

Running Multiple MySQL Server Instances in Parallel on a Linux Server

  • packtpub.com; By Daniel Schneller & Udo Schwedt (Posted by abhishekk on Oct 11, 2010 12:46 PM EDT)
  • Story Type: Tutorial; Groups: Linux, MySQL
On most Linux setups, MySQL comes as a readymade installation package, making it easy to get started. It is, however, a little more complicated to run multiple instances in parallel, often a setup handy for development. This is because in contrast to Windows, MySQL is usually not installed in a self-contained directory, but most Linux distribution packages spread it across the appropriate system folders for programs, configuration files, and so on.

Examples of MySQL Daemon Plugin

  • packtpub.com; By Andrew Hutchings (Posted by abhishekk on Sep 3, 2010 1:38 AM EDT)
  • Story Type: Tutorial; Groups: MySQL
In the previous article, A look inside a MySQL Daemon plugin, we were introduced to the MySQL Plugin API. It talked about the most simple plugin type—Daemon plugins. It starts with the basic structure of a plugin—what a plugin declaration should look like, what plugin types are, and so on. Then it described features common to all plugin types—initialization and de-initialization callbacks, status variables, and configuration system variables.

Database Considerations for PHP 5 CMS

  • packtpub.com; By Martin Brampton (Posted by abhishekk on Aug 26, 2010 1:12 PM EDT)
  • Story Type: Tutorial; Groups: PHP
In this article, we will cover the following topics about databases in PHP 5 Content Management Systems: * Database dependency * The role of the database * Level of database abstraction * Ease of development * Keeping up with change * Database security * Pragmatic error handling

Sessions and Users in PHP 5 CMS

  • packtpub.com; By Martin Brampton (Posted by abhishekk on Aug 19, 2010 7:24 PM EDT)
  • Story Type: Tutorial; Groups: PHP
In this article, by Martin Brampton author of PHP 5 CMS Framework Development, we get into the detailed questions involved in providing continuity for people using our websites. Almost any framework to support web content needs to handle this issue robustly, and efficiently. In this article, we will look at the need for sessions, and the PHP mechanism that makes them work. There are security issues to be handled, as sessions are a well known source of vulnerabilities. Search engine bots can take an alarmingly large portion of your site bandwidth, and special techniques can be used to minimize their impact on session handling.