Coder Social home page Coder Social logo

bxaf_mysqli's Introduction

BXAF_mysqli

Safe and convenient way to handle SQL queries utilizing type-hinted placeholders.

Modified from SafeMySQL as following: @author [email protected] @link http://phpfaq.ru/safemysql

Key features

  • set of helper functions to get the desired result right out of query, like in PEAR::DB
  • conditional query building using parse() method to build queries of whatever comlexity, while keeping extra safety of placeholders
  • type-hinted placeholders

Type-hinted placeholders are great because

  • safe, as any other [properly implemented] placeholders
  • no need for manual escaping or binding, makes the code extra DRY
  • allows support for non-standard types such as identifier or array, which saves A LOT of pain in the back.

Supported placeholders at the moment are:

  • ?s ("string") - strings (also DATE, FLOAT and DECIMAL)
  • ?i ("integer") - the name says it all
  • ?n ("name") - identifiers (table and field names)
  • ?a ("array") - complex placeholder for IN() operator (substituted with string of 'a','b','c' format, without parentesis)
  • ?u ("update") - complex placeholder for SET operator (substituted with string of field='value',field='value' format) and
  • ?p ("parsed") - special type placeholder, for inserting already parsed statements without any processing, to avoid double - parsing.

Connection:

$db = new bxaf_mysqli(); // with default settings

$opts = array( 'user' => 'user', 'pass' => 'pass', 'db' => 'db' );

$db = new bxaf_mysqli($opts); // with some of the default settings overwritten

Alternatively, you can just pass an existing mysqli instance that will be used to run queries instead of creating a new connection. Excellent choice for migration!

bxaf_mysqli's People

Contributors

qqqlllyyyy avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.