Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mdlsql

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdlsql

  • 0.0.7
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= MdlSql

Modular Sql

Modular Sql is a modular query builder that enables a high database compatibility, usage easiness and dynamic construction. It is intended to allow any kind of query in any database, but will, at the moment, only handle relatively simple ones to most common databases.

It actually does a similar job to ActiveRecord, but I believe it may allow a better control in some aspects as it lies somehow between raw queries and that uberuseful gem.

Actual situation:

  • Simple mysql queries (select, insert, update).
  • No joins.
  • Just one where condition (if you need more than one, use #where(all_conditions_together).

== Usage

Select: result = MdlSql::select.from(:users).where(:role, 2, '=').execute

This will build and execute the following query: SELECT * FROM users WHERE role = 2

We finally iterate over the results: results.each do |row| puts row[:username] end

You can read more about the usage of the MysqlResult object @ https://github.com/brianmario/mysql2usage

When selecting columns use .cols()/.columns(), which can receive a Hash or an Array. In case a Hash is passed, the key will be the alias and the value the actual name of the column (f.e. 'users.username').

Insert: result = MdlSql::insert.into(:users).cols(:username, :role).values('admin',2).execute

Update: result = MdlSql::update(:users).set(:role => '1').where(@username = 'default'").execute

Updating follows mysql building way. Remember that you can still use .table() if you feel more comfortable.

== Fast documentation

===#table(table_name, table_alias) (#from, #into): Select table to use.

=== #where(first_term, sencond_term, operator): Where condition. This can be used both passing each separate term (recommended) and introducing the whole comparison as the first_term (i.e. .where('id = 1')). The first way will provide a higher compatibility with other databases, but may not be as useful when needing more than a simple condition.

TODO: expand where to include AND, OR, etc. in order to be able to concatenate many conditions.

=== #columns(*values)

== Installing

gem install mdlsql

If you're going to use mysql, mysql2 is required. Please follow these instructions to install: https://github.com/brianmario/mysql2#installing (really worth it, even if you're not going to use mdlsql ;) ).

== Useful Links

== License

Copyright (C) 2013 MdlSql contributers

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

FAQs

Package last updated on 09 Sep 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc