├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── bin └── test ├── docs └── sample_execute_sql.png ├── execute_sql.gemspec ├── lib ├── execute_sql.rb ├── execute_sql │ ├── adapters │ │ ├── base_adapter.rb │ │ ├── mysql.rb │ │ ├── postgres.rb │ │ └── sqlite.rb │ ├── blank_results.rb │ ├── connection.rb │ ├── database.rb │ ├── execute_sql_error.rb │ ├── mysql_result.rb │ ├── railtie.rb │ ├── result.rb │ ├── sql_explain.rb │ ├── sql_import.rb │ ├── sql_query.rb │ ├── sql_query_data.rb │ └── version.rb └── tasks │ └── execute_sql_tasks.rake └── test ├── dummy ├── .ruby-version ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.js │ │ │ ├── channels │ │ │ │ └── .keep │ │ │ └── home.js │ │ └── stylesheets │ │ │ ├── application.css │ │ │ └── home.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── home_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── home_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── user.rb │ └── views │ │ ├── home │ │ └── index.html.erb │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ └── storage.yml ├── db │ ├── migrate │ │ └── 20190313194001_create_users.rb │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep ├── package.json └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico ├── execute_sql_test.rb └── test_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: igorkasyanchuk 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle/ 2 | log/*.log 3 | pkg/ 4 | test/dummy/db/*.sqlite3 5 | test/dummy/db/*.sqlite3-journal 6 | test/dummy/log/*.log 7 | test/dummy/node_modules/ 8 | test/dummy/yarn-error.log 9 | test/dummy/storage/ 10 | test/dummy/tmp/ 11 | *.gem -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | 3 | rvm: 4 | - "2.5" 5 | - "2.6" 6 | 7 | cache: bundler 8 | 9 | bundler_args: --without development --jobs=3 --retry=3 --path=../vendor/bundle 10 | 11 | script: 12 | - bundle exec rake test 13 | 14 | notifications: 15 | email: false 16 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 | 4 | # Declare your gem's dependencies in execute_sql.gemspec. 5 | # Bundler will treat runtime dependencies like base dependencies, and 6 | # development dependencies will be added by default to the :development group. 7 | gemspec 8 | 9 | # Declare any dependencies that are still in development here instead of in 10 | # your gemspec. These might include edge Rails or gems from your path or 11 | # Git. Remember to move these dependencies to your gemspec before releasing 12 | # your gem to rubygems.org. 13 | 14 | # To use a debugger 15 | # gem 'byebug' 16 | 17 | #gem 'sqlite3', '~> 1.3.13', platforms: :ruby, group: [:development, :test] -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | PATH 2 | remote: . 3 | specs: 4 | execute_sql (0.1.1) 5 | rails 6 | terminal-table 7 | 8 | GEM 9 | remote: https://rubygems.org/ 10 | specs: 11 | actioncable (6.0.1) 12 | actionpack (= 6.0.1) 13 | nio4r (~> 2.0) 14 | websocket-driver (>= 0.6.1) 15 | actionmailbox (6.0.1) 16 | actionpack (= 6.0.1) 17 | activejob (= 6.0.1) 18 | activerecord (= 6.0.1) 19 | activestorage (= 6.0.1) 20 | activesupport (= 6.0.1) 21 | mail (>= 2.7.1) 22 | actionmailer (6.0.1) 23 | actionpack (= 6.0.1) 24 | actionview (= 6.0.1) 25 | activejob (= 6.0.1) 26 | mail (~> 2.5, >= 2.5.4) 27 | rails-dom-testing (~> 2.0) 28 | actionpack (6.0.1) 29 | actionview (= 6.0.1) 30 | activesupport (= 6.0.1) 31 | rack (~> 2.0) 32 | rack-test (>= 0.6.3) 33 | rails-dom-testing (~> 2.0) 34 | rails-html-sanitizer (~> 1.0, >= 1.2.0) 35 | actiontext (6.0.1) 36 | actionpack (= 6.0.1) 37 | activerecord (= 6.0.1) 38 | activestorage (= 6.0.1) 39 | activesupport (= 6.0.1) 40 | nokogiri (>= 1.8.5) 41 | actionview (6.0.1) 42 | activesupport (= 6.0.1) 43 | builder (~> 3.1) 44 | erubi (~> 1.4) 45 | rails-dom-testing (~> 2.0) 46 | rails-html-sanitizer (~> 1.1, >= 1.2.0) 47 | activejob (6.0.1) 48 | activesupport (= 6.0.1) 49 | globalid (>= 0.3.6) 50 | activemodel (6.0.1) 51 | activesupport (= 6.0.1) 52 | activerecord (6.0.1) 53 | activemodel (= 6.0.1) 54 | activesupport (= 6.0.1) 55 | activestorage (6.0.1) 56 | actionpack (= 6.0.1) 57 | activejob (= 6.0.1) 58 | activerecord (= 6.0.1) 59 | marcel (~> 0.3.1) 60 | activesupport (6.0.1) 61 | concurrent-ruby (~> 1.0, >= 1.0.2) 62 | i18n (>= 0.7, < 2) 63 | minitest (~> 5.1) 64 | tzinfo (~> 1.1) 65 | zeitwerk (~> 2.2) 66 | builder (3.2.3) 67 | coderay (1.1.2) 68 | concurrent-ruby (1.1.5) 69 | crass (1.0.5) 70 | erubi (1.9.0) 71 | globalid (0.4.2) 72 | activesupport (>= 4.2.0) 73 | i18n (1.7.0) 74 | concurrent-ruby (~> 1.0) 75 | loofah (2.4.0) 76 | crass (~> 1.0.2) 77 | nokogiri (>= 1.5.9) 78 | mail (2.7.1) 79 | mini_mime (>= 0.1.1) 80 | marcel (0.3.3) 81 | mimemagic (~> 0.3.2) 82 | method_source (0.9.2) 83 | mimemagic (0.3.3) 84 | mini_mime (1.0.2) 85 | mini_portile2 (2.4.0) 86 | minitest (5.13.0) 87 | nio4r (2.5.2) 88 | nokogiri (1.10.7) 89 | mini_portile2 (~> 2.4.0) 90 | pry (0.12.2) 91 | coderay (~> 1.1.0) 92 | method_source (~> 0.9.0) 93 | pry-rails (0.3.9) 94 | pry (>= 0.10.4) 95 | rack (2.0.7) 96 | rack-test (1.1.0) 97 | rack (>= 1.0, < 3) 98 | rails (6.0.1) 99 | actioncable (= 6.0.1) 100 | actionmailbox (= 6.0.1) 101 | actionmailer (= 6.0.1) 102 | actionpack (= 6.0.1) 103 | actiontext (= 6.0.1) 104 | actionview (= 6.0.1) 105 | activejob (= 6.0.1) 106 | activemodel (= 6.0.1) 107 | activerecord (= 6.0.1) 108 | activestorage (= 6.0.1) 109 | activesupport (= 6.0.1) 110 | bundler (>= 1.3.0) 111 | railties (= 6.0.1) 112 | sprockets-rails (>= 2.0.0) 113 | rails-dom-testing (2.0.3) 114 | activesupport (>= 4.2.0) 115 | nokogiri (>= 1.6) 116 | rails-html-sanitizer (1.3.0) 117 | loofah (~> 2.3) 118 | railties (6.0.1) 119 | actionpack (= 6.0.1) 120 | activesupport (= 6.0.1) 121 | method_source 122 | rake (>= 0.8.7) 123 | thor (>= 0.20.3, < 2.0) 124 | rake (13.0.1) 125 | sprockets (4.0.0) 126 | concurrent-ruby (~> 1.0) 127 | rack (> 1, < 3) 128 | sprockets-rails (3.2.1) 129 | actionpack (>= 4.0) 130 | activesupport (>= 4.0) 131 | sprockets (>= 3.0.0) 132 | sqlite3 (1.4.1) 133 | terminal-table (1.8.0) 134 | unicode-display_width (~> 1.1, >= 1.1.1) 135 | thor (0.20.3) 136 | thread_safe (0.3.6) 137 | tzinfo (1.2.5) 138 | thread_safe (~> 0.1) 139 | unicode-display_width (1.6.0) 140 | websocket-driver (0.7.1) 141 | websocket-extensions (>= 0.1.0) 142 | websocket-extensions (0.1.4) 143 | zeitwerk (2.2.2) 144 | 145 | PLATFORMS 146 | ruby 147 | 148 | DEPENDENCIES 149 | execute_sql! 150 | pry-rails 151 | sqlite3 (~> 1.4) 152 | 153 | BUNDLED WITH 154 | 1.17.3 155 | -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2019 Igor Kasyanchuk 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rails Execute SQL 2 | 3 | [![RailsJazz](https://github.com/igorkasyanchuk/rails_time_travel/blob/main/docs/my_other.svg?raw=true)](https://www.railsjazz.com) 4 | [![https://www.patreon.com/igorkasyanchuk](https://github.com/igorkasyanchuk/rails_time_travel/blob/main/docs/patron.svg?raw=true)](https://www.patreon.com/igorkasyanchuk) 5 | 6 | [!["Buy Me A Coffee"](https://github.com/igorkasyanchuk/get-smart/blob/main/docs/snapshot-bmc-button-small.png?raw=true)](https://buymeacoffee.com/igorkasyanchuk) 7 | 8 | Execute SQL with `execute_sql` helper inside your Rails apps. Directly in `rails console`. 9 | 10 | 11 | 12 | ## Usage 13 | 14 | Simply add this gem into your Gemfile. 15 | 16 | And for example call directly in `rails console`: 17 | 18 | ```ruby 19 | execute_sql "select count(*) from users where age > 50" 20 | 21 | # see below for additional options. 22 | ``` 23 | 24 | OR in your models, controllers, or other parts of app: 25 | 26 | ```ruby 27 | ExecuteSQL.run "select count(*) from users where age > 50" 28 | 29 | # or with different mode 30 | # default mode: :print 31 | 32 | # return array of HashWithIndifferentAccess objects 33 | # please remember that arrays can be manipulated with Enumerable methods, but this is *not* a chainable ARel relation 34 | ExecuteSQL.run "select * from users where age > 50", mode: :array 35 | 36 | # return array of User objects 37 | ExecuteSQL.run "select * from users where age > 50", mode: :array, klass: User 38 | 39 | # return single value 40 | ExecuteSQL.run "select count(*) from users where age > 50", mode: :single 41 | 42 | # return array of results 43 | ExecuteSQL.run "select * from users where age > 50", mode: :raw 44 | 45 | # just execute and return nil 46 | ExecuteSQL.run "truncate table users", mode: :none 47 | ``` 48 | 49 | Sample in controller: 50 | 51 | ```ruby 52 | class HomeController < ApplicationController 53 | def index 54 | @users = ExecuteSql.run "select * from users", mode: :raw 55 | end 56 | end 57 | ``` 58 | 59 | ## Installation 60 | Add this line to your application's Gemfile: 61 | 62 | ```ruby 63 | gem 'execute_sql' 64 | ``` 65 | 66 | And then execute: 67 | ```bash 68 | $ bundle 69 | ``` 70 | 71 | ## Options and modes 72 | 73 | You can call: 74 | 75 | In rails console use helper: `execute_sql "some SQL"`. 76 | 77 | Or `ExecuteSql.run "some SQL"` or `ExecuteSQL.run "some SQL"`. 78 | 79 | ## TODO 80 | 81 | - import SQL files 82 | - travis CI 83 | - verify with older rails 84 | - more specs 85 | 86 | ## Contributing 87 | 88 | You are welcome to contribute. 89 | 90 | ## License 91 | 92 | The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). 93 | 94 | Some pieces of code I took from another my gem: https://github.com/igorkasyanchuk/rails_db. 95 | 96 | ## Contributors 97 | 98 | - @pjforde1978 99 | 100 | Big thank you. 101 | 102 | [](https://www.railsjazz.com/?utm_source=github&utm_medium=bottom&utm_campaign=execute_sql) 104 | 105 | [!["Buy Me A Coffee"](https://github.com/igorkasyanchuk/get-smart/blob/main/docs/snapshot-bmc-button.png?raw=true)](https://buymeacoffee.com/igorkasyanchuk) 106 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | begin 2 | require 'bundler/setup' 3 | rescue LoadError 4 | puts 'You must `gem install bundler` and `bundle install` to run rake tasks' 5 | end 6 | 7 | require 'rdoc/task' 8 | 9 | RDoc::Task.new(:rdoc) do |rdoc| 10 | rdoc.rdoc_dir = 'rdoc' 11 | rdoc.title = 'ExecuteSql' 12 | rdoc.options << '--line-numbers' 13 | rdoc.rdoc_files.include('README.md') 14 | rdoc.rdoc_files.include('lib/**/*.rb') 15 | end 16 | 17 | require 'bundler/gem_tasks' 18 | 19 | require 'rake/testtask' 20 | 21 | Rake::TestTask.new(:test) do |t| 22 | t.libs << 'test' 23 | t.pattern = 'test/**/*_test.rb' 24 | t.verbose = false 25 | end 26 | 27 | task default: :test 28 | -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | $: << File.expand_path("../test", __dir__) 3 | 4 | require "bundler/setup" 5 | require "rails/plugin/test" 6 | -------------------------------------------------------------------------------- /docs/sample_execute_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/docs/sample_execute_sql.png -------------------------------------------------------------------------------- /execute_sql.gemspec: -------------------------------------------------------------------------------- 1 | $:.push File.expand_path("lib", __dir__) 2 | 3 | # Maintain your gem's version: 4 | require "execute_sql/version" 5 | 6 | # Describe your gem and declare its dependencies: 7 | Gem::Specification.new do |spec| 8 | spec.name = "execute_sql" 9 | spec.version = ExecuteSql::VERSION 10 | spec.authors = ["Igor Kasyanchuk"] 11 | spec.email = ["igorkasyanchuk@gmail.com"] 12 | spec.homepage = "https://github.com/igorkasyanchuk/execute_sql" 13 | spec.summary = "Execute SQL directly in rails console or in the code." 14 | spec.description = "Execute SQL directly in rails console or in the code." 15 | spec.license = "MIT" 16 | 17 | spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] 18 | 19 | spec.add_dependency "rails" 20 | spec.add_dependency 'terminal-table' 21 | 22 | spec.add_development_dependency "sqlite3", '~> 1.4' 23 | spec.add_development_dependency "pry-rails" 24 | end 25 | -------------------------------------------------------------------------------- /lib/execute_sql.rb: -------------------------------------------------------------------------------- 1 | require 'terminal-table' 2 | 3 | require_relative 'execute_sql/connection' 4 | require_relative 'execute_sql/database' 5 | require_relative 'execute_sql/blank_results' 6 | require_relative 'execute_sql/mysql_result' 7 | require_relative 'execute_sql/result' 8 | require_relative 'execute_sql/execute_sql_error' 9 | 10 | require_relative 'execute_sql/sql_query_data' 11 | require_relative 'execute_sql/sql_explain' 12 | require_relative 'execute_sql/sql_import' 13 | require_relative 'execute_sql/sql_query' 14 | 15 | require_relative 'execute_sql/adapters/base_adapter' 16 | require_relative 'execute_sql/adapters/mysql' 17 | require_relative 'execute_sql/adapters/postgres' 18 | require_relative 'execute_sql/adapters/sqlite' 19 | 20 | require "execute_sql/railtie" 21 | 22 | module ExecuteSql 23 | module ConsoleMethods 24 | 25 | def execute_sql(sql, mode: :print, klass: HashWithIndifferentAccess) 26 | sql_query = ExecuteSql::SqlQuery.new("#{sql}".strip).execute 27 | rows = sql_query.data.rows 28 | cols = sql_query.data.columns 29 | case mode.to_s 30 | when 'print' 31 | puts Terminal::Table.new(rows: rows, headings: cols) 32 | when 'array' 33 | result = rows.map do |row| 34 | record = klass.new 35 | cols.each_with_index.map do |col, index| 36 | record[col] = row[index] 37 | end 38 | record 39 | end 40 | result 41 | when 'raw' 42 | rows 43 | when 'single' 44 | rows.flatten[0] 45 | when 'none' 46 | nil 47 | else 48 | [] 49 | end 50 | end 51 | 52 | def run(sql, *args) 53 | execute_sql(sql, *args) 54 | end 55 | end 56 | 57 | extend ConsoleMethods 58 | end 59 | 60 | ExecuteSQL = ExecuteSql 61 | -------------------------------------------------------------------------------- /lib/execute_sql/adapters/base_adapter.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | module Adapters 3 | 4 | class BaseAdapter 5 | extend ::ExecuteSql::Connection 6 | 7 | MULTI_STATEMENT_HELP_TEXT = "EXPERIMENTAL: You can import only file with SQL statements separated by ';'. Each new statement must start from new line." 8 | 9 | def self.execute(sql) 10 | t0 = Time.now 11 | connection.execute(sql) 12 | Time.now - t0 13 | end 14 | 15 | def self.exec_query(sql) 16 | t0 = Time.now 17 | results = connection.exec_query(sql) 18 | execution_time = Time.now - t0 19 | [results, execution_time] 20 | end 21 | 22 | def self.select(sql) 23 | BaseAdapter.exec_query(sql) 24 | end 25 | 26 | def self.explain(sql) 27 | BaseAdapter.exec_query(sql) 28 | end 29 | 30 | def self.adapter_name 31 | 'base' 32 | end 33 | 34 | def self.mime 35 | 'text/x-sql' 36 | end 37 | 38 | private 39 | 40 | def self.multiple_execute(sql, divider = ";\n") 41 | sql.split(divider).each do |statement| 42 | connection.execute(statement) 43 | end 44 | end 45 | 46 | end 47 | 48 | end 49 | end -------------------------------------------------------------------------------- /lib/execute_sql/adapters/mysql.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | module Adapters 3 | 4 | class Mysql < BaseAdapter 5 | 6 | def self.execute(sql) 7 | t0 = Time.now 8 | multiple_execute(sql) 9 | Time.now - t0 10 | end 11 | 12 | def self.exec_query(sql, log = true) 13 | t0 = Time.now 14 | results = connection.execute(sql, 'SQL') # used from RoR mysql adapter source 15 | result = MysqlResult.new(results) 16 | execution_time = Time.now - t0 17 | [result, execution_time] 18 | end 19 | 20 | def self.adapter_name 21 | 'mysql' 22 | end 23 | 24 | def self.mime 25 | 'text/x-mysql' 26 | end 27 | 28 | end 29 | 30 | end 31 | end -------------------------------------------------------------------------------- /lib/execute_sql/adapters/postgres.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | module Adapters 3 | 4 | class Postgres < BaseAdapter 5 | 6 | def self.adapter_name 7 | 'postgres' 8 | end 9 | 10 | def self.mime 11 | 'text/x-plsql' 12 | end 13 | 14 | end 15 | 16 | end 17 | end -------------------------------------------------------------------------------- /lib/execute_sql/adapters/sqlite.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | module Adapters 3 | 4 | class Sqlite < BaseAdapter 5 | 6 | def self.execute(sql) 7 | t0 = Time.now 8 | multiple_execute(sql) 9 | Time.now - t0 10 | end 11 | 12 | def self.adapter_name 13 | 'sqlite' 14 | end 15 | 16 | end 17 | 18 | end 19 | end -------------------------------------------------------------------------------- /lib/execute_sql/blank_results.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class BlankResults 3 | 4 | def rows; [] end 5 | def columns; [] end 6 | 7 | end 8 | end -------------------------------------------------------------------------------- /lib/execute_sql/connection.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | module Connection 3 | 4 | def connection 5 | ActiveRecord::Base.connection 6 | end 7 | 8 | def columns 9 | connection.columns(name) 10 | end 11 | 12 | def column_properties 13 | %w(name sql_type null limit precision scale type default) 14 | end 15 | 16 | def to_param 17 | name 18 | end 19 | 20 | def column_names 21 | columns.collect(&:name) 22 | end 23 | 24 | end 25 | end -------------------------------------------------------------------------------- /lib/execute_sql/database.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class Database 3 | extend Connection 4 | 5 | class << self 6 | delegate :execute, to: :adapter 7 | delegate :select, to: :adapter 8 | delegate :explain, to: :adapter 9 | delegate :exec_query, to: :adapter 10 | end 11 | 12 | def self.adapter 13 | case connection.class.to_s 14 | when /Mysql/ 15 | ExecuteSql::Adapters::Mysql 16 | when /Postgre/ 17 | ExecuteSql::Adapters::Postgres 18 | when /SQLite/ 19 | ExecuteSql::Adapters::Sqlite 20 | else 21 | ExecuteSql::Adapters::BaseAdapter 22 | end 23 | end 24 | 25 | end 26 | end -------------------------------------------------------------------------------- /lib/execute_sql/execute_sql_error.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class ExecuteSqlError < StandardError 3 | end 4 | end -------------------------------------------------------------------------------- /lib/execute_sql/mysql_result.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class MysqlResult 3 | 4 | attr_reader :columns, :rows 5 | 6 | delegate :each, to: :rows 7 | 8 | def initialize(result) 9 | @columns = [] 10 | @rows = [] 11 | if result 12 | @columns = result.fields 13 | @rows = result.entries 14 | end 15 | end 16 | 17 | end 18 | end -------------------------------------------------------------------------------- /lib/execute_sql/railtie.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class Railtie < ::Rails::Railtie 3 | 4 | console do 5 | TOPLEVEL_BINDING.eval('self').extend ExecuteSql::ConsoleMethods 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /lib/execute_sql/result.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class Result 3 | 4 | attr_reader :error 5 | 6 | def initialize(error) 7 | @error = error 8 | end 9 | 10 | def self.ok 11 | Result.new(nil) 12 | end 13 | 14 | def ok? 15 | error.nil? 16 | end 17 | 18 | end 19 | end -------------------------------------------------------------------------------- /lib/execute_sql/sql_explain.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class SqlExplain < SqlQueryData 3 | 4 | def sql 5 | "EXPLAIN #{super}" 6 | end 7 | 8 | end 9 | end -------------------------------------------------------------------------------- /lib/execute_sql/sql_import.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class SqlImport 3 | include Connection 4 | 5 | attr_reader :time, :result 6 | 7 | def initialize(file) 8 | @file = file 9 | end 10 | 11 | def valid? 12 | if @file.nil? 13 | raise ExecuteSqlError.new('Please select valid SQL file and continue') 14 | end 15 | end 16 | 17 | def import 18 | valid? 19 | @time = Database.adapter.execute(@file.read) 20 | @result = Result.ok 21 | rescue ExecuteSqlError, ActiveRecord::StatementInvalid => e 22 | @result = Result.new(e) 23 | end 24 | 25 | end 26 | end -------------------------------------------------------------------------------- /lib/execute_sql/sql_query.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class SqlQuery 3 | include Connection 4 | 5 | attr_reader :query, :data, :explain, :sql_explain 6 | 7 | def initialize(query, sql_explain = false) 8 | @query = query 9 | @sql_explain = sql_explain 10 | end 11 | 12 | def valid? 13 | query.present? 14 | end 15 | 16 | def load_explain 17 | @explain ||= SqlExplain.new(self).load_data 18 | end 19 | 20 | def load_data 21 | @data ||= SqlQueryData.new(self).load_data 22 | end 23 | 24 | def execute 25 | if valid? 26 | load_data 27 | load_explain if sql_explain 28 | end 29 | self 30 | end 31 | 32 | def to_csv 33 | CSV.generate do |csv| 34 | csv << data.columns 35 | data.rows.each do |row| 36 | csv << row 37 | end 38 | end 39 | end 40 | 41 | end 42 | end -------------------------------------------------------------------------------- /lib/execute_sql/sql_query_data.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | class SqlQueryData 3 | 4 | attr_reader :sql_query, :time, :columns, :rows, :error 5 | 6 | def initialize(sql_query) 7 | @rows = [] 8 | @columns = [] 9 | @sql_query = sql_query 10 | end 11 | 12 | def load_data 13 | result, @time = Database.adapter.exec_query(sql) 14 | @columns = result.columns 15 | @rows = result.rows 16 | self 17 | rescue ActiveRecord::StatementInvalid => e 18 | @columns, @rows = [], [] 19 | @error = e 20 | self 21 | end 22 | 23 | def count 24 | rows.count 25 | end 26 | 27 | def is_error? 28 | error.present? 29 | end 30 | 31 | def sql 32 | sql_query.query 33 | end 34 | 35 | end 36 | end -------------------------------------------------------------------------------- /lib/execute_sql/version.rb: -------------------------------------------------------------------------------- 1 | module ExecuteSql 2 | VERSION = '0.1.1' 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/execute_sql_tasks.rake: -------------------------------------------------------------------------------- 1 | # desc "Explaining what the task does" 2 | # task :execute_sql do 3 | # # Task goes here 4 | # end 5 | -------------------------------------------------------------------------------- /test/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.6.1 -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require_relative 'config/application' 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../javascripts .js 3 | //= link_directory ../stylesheets .css 4 | -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/app/assets/images/.keep -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 5 | // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // compiled file. JavaScript code in this file should be added after the last require_* statement. 9 | // 10 | // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details 11 | // about supported directives. 12 | // 13 | //= require rails-ujs 14 | //= require activestorage 15 | //= require_tree . 16 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- 1 | // Action Cable provides the framework to deal with WebSockets in Rails. 2 | // You can generate new channels where WebSocket features live using the `rails generate channel` command. 3 | // 4 | //= require action_cable 5 | //= require_self 6 | //= require_tree ./channels 7 | 8 | (function() { 9 | this.App || (this.App = {}); 10 | 11 | App.cable = ActionCable.createConsumer(); 12 | 13 | }).call(this); 14 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/app/assets/javascripts/channels/.keep -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/home.js: -------------------------------------------------------------------------------- 1 | // Place all the behaviors and hooks related to the matching controller here. 2 | // All this logic will automatically be available in application.js. 3 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the bottom of the 9 | * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS 10 | * files in this directory. Styles in this file should be added after the last require_* statement. 11 | * It is generally better to create a new file per style scope. 12 | * 13 | *= require_tree . 14 | *= require_self 15 | */ 16 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/home.css: -------------------------------------------------------------------------------- 1 | /* 2 | Place all the styles related to the matching controller here. 3 | They will automatically be included in application.css. 4 | */ 5 | -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/app/controllers/concerns/.keep -------------------------------------------------------------------------------- /test/dummy/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | @users = ExecuteSql.run "select * from users", mode: :raw 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/app/models/concerns/.keep -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/views/home/index.html.erb: -------------------------------------------------------------------------------- 1 |

Home#index

2 |

Find me in app/views/home/index.html.erb

3 | 4 | <%= debug @users %> -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Dummy 5 | <%= csrf_meta_tags %> 6 | <%= csp_meta_tag %> 7 | 8 | <%= stylesheet_link_tag 'application', media: 'all' %> 9 | <%= javascript_include_tag 'application' %> 10 | 11 | 12 | 13 | <%= yield %> 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | APP_PATH = File.expand_path('../config/application', __dir__) 3 | require_relative '../config/boot' 4 | require 'rails/commands' 5 | -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative '../config/boot' 3 | require 'rake' 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'fileutils' 3 | include FileUtils 4 | 5 | # path to your application root. 6 | APP_ROOT = File.expand_path('..', __dir__) 7 | 8 | def system!(*args) 9 | system(*args) || abort("\n== Command #{args} failed ==") 10 | end 11 | 12 | chdir APP_ROOT do 13 | # This script is a starting point to setup your application. 14 | # Add necessary setup steps to this file. 15 | 16 | puts '== Installing dependencies ==' 17 | system! 'gem install bundler --conservative' 18 | system('bundle check') || system!('bundle install') 19 | 20 | # Install JavaScript dependencies if using Yarn 21 | # system('bin/yarn') 22 | 23 | # puts "\n== Copying sample files ==" 24 | # unless File.exist?('config/database.yml') 25 | # cp 'config/database.yml.sample', 'config/database.yml' 26 | # end 27 | 28 | puts "\n== Preparing database ==" 29 | system! 'bin/rails db:setup' 30 | 31 | puts "\n== Removing old logs and tempfiles ==" 32 | system! 'bin/rails log:clear tmp:clear' 33 | 34 | puts "\n== Restarting application server ==" 35 | system! 'bin/rails restart' 36 | end 37 | -------------------------------------------------------------------------------- /test/dummy/bin/update: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'fileutils' 3 | include FileUtils 4 | 5 | # path to your application root. 6 | APP_ROOT = File.expand_path('..', __dir__) 7 | 8 | def system!(*args) 9 | system(*args) || abort("\n== Command #{args} failed ==") 10 | end 11 | 12 | chdir APP_ROOT do 13 | # This script is a way to update your development environment automatically. 14 | # Add necessary update steps to this file. 15 | 16 | puts '== Installing dependencies ==' 17 | system! 'gem install bundler --conservative' 18 | system('bundle check') || system!('bundle install') 19 | 20 | # Install JavaScript dependencies if using Yarn 21 | # system('bin/yarn') 22 | 23 | puts "\n== Updating database ==" 24 | system! 'bin/rails db:migrate' 25 | 26 | puts "\n== Removing old logs and tempfiles ==" 27 | system! 'bin/rails log:clear tmp:clear' 28 | 29 | puts "\n== Restarting application server ==" 30 | system! 'bin/rails restart' 31 | end 32 | -------------------------------------------------------------------------------- /test/dummy/bin/yarn: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | APP_ROOT = File.expand_path('..', __dir__) 3 | Dir.chdir(APP_ROOT) do 4 | begin 5 | exec "yarnpkg", *ARGV 6 | rescue Errno::ENOENT 7 | $stderr.puts "Yarn executable was not detected in the system." 8 | $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install" 9 | exit 1 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- 1 | require_relative 'boot' 2 | 3 | require 'rails/all' 4 | 5 | Bundler.require(*Rails.groups) 6 | require "execute_sql" 7 | 8 | module Dummy 9 | class Application < Rails::Application 10 | # Initialize configuration defaults for originally generated Rails version. 11 | config.load_defaults 5.2 12 | 13 | # Settings in config/environments/* take precedence over those specified here. 14 | # Application configuration can go into files in config/initializers 15 | # -- all .rb files in that directory are automatically loaded after loading 16 | # the framework and any gems in your application. 17 | end 18 | end 19 | 20 | -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- 1 | # Set up gems listed in the Gemfile. 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__) 3 | 4 | require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) 5 | $LOAD_PATH.unshift File.expand_path('../../../lib', __dir__) 6 | -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- 1 | development: 2 | adapter: async 3 | 4 | test: 5 | adapter: async 6 | 7 | production: 8 | adapter: redis 9 | url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> 10 | channel_prefix: dummy_production 11 | -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- 1 | # SQLite version 3.x 2 | # gem install sqlite3 3 | # 4 | # Ensure the SQLite 3 gem is defined in your Gemfile 5 | # gem 'sqlite3' 6 | # 7 | default: &default 8 | adapter: sqlite3 9 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 10 | timeout: 5000 11 | 12 | development: 13 | <<: *default 14 | database: db/development.sqlite3 15 | 16 | # Warning: The database defined as "test" will be erased and 17 | # re-generated from your development database when you run "rake". 18 | # Do not set this db to the same as development or production. 19 | test: 20 | <<: *default 21 | database: db/test.sqlite3 22 | 23 | production: 24 | <<: *default 25 | database: db/production.sqlite3 26 | -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require_relative 'application' 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # In the development environment your application's code is reloaded on 5 | # every request. This slows down response time but is perfect for development 6 | # since you don't have to restart the web server when you make code changes. 7 | config.cache_classes = false 8 | 9 | # Do not eager load code on boot. 10 | config.eager_load = false 11 | 12 | # Show full error reports. 13 | config.consider_all_requests_local = true 14 | 15 | # Enable/disable caching. By default caching is disabled. 16 | # Run rails dev:cache to toggle caching. 17 | if Rails.root.join('tmp', 'caching-dev.txt').exist? 18 | config.action_controller.perform_caching = true 19 | 20 | config.cache_store = :memory_store 21 | config.public_file_server.headers = { 22 | 'Cache-Control' => "public, max-age=#{2.days.to_i}" 23 | } 24 | else 25 | config.action_controller.perform_caching = false 26 | 27 | config.cache_store = :null_store 28 | end 29 | 30 | # Store uploaded files on the local file system (see config/storage.yml for options) 31 | config.active_storage.service = :local 32 | 33 | # Don't care if the mailer can't send. 34 | config.action_mailer.raise_delivery_errors = false 35 | 36 | config.action_mailer.perform_caching = false 37 | 38 | # Print deprecation notices to the Rails logger. 39 | config.active_support.deprecation = :log 40 | 41 | # Raise an error on page load if there are pending migrations. 42 | config.active_record.migration_error = :page_load 43 | 44 | # Highlight code that triggered database queries in logs. 45 | config.active_record.verbose_query_logs = true 46 | 47 | # Debug mode disables concatenation and preprocessing of assets. 48 | # This option may cause significant delays in view rendering with a large 49 | # number of complex assets. 50 | config.assets.debug = true 51 | 52 | # Suppress logger output for asset requests. 53 | config.assets.quiet = true 54 | 55 | # Raises error for missing translations 56 | # config.action_view.raise_on_missing_translations = true 57 | 58 | # Use an evented file watcher to asynchronously detect changes in source code, 59 | # routes, locales, etc. This feature depends on the listen gem. 60 | # config.file_watcher = ActiveSupport::EventedFileUpdateChecker 61 | end 62 | -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # Code is not reloaded between requests. 5 | config.cache_classes = true 6 | 7 | # Eager load code on boot. This eager loads most of Rails and 8 | # your application in memory, allowing both threaded web servers 9 | # and those relying on copy on write to perform better. 10 | # Rake tasks automatically ignore this option for performance. 11 | config.eager_load = true 12 | 13 | # Full error reports are disabled and caching is turned on. 14 | config.consider_all_requests_local = false 15 | config.action_controller.perform_caching = true 16 | 17 | # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] 18 | # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). 19 | # config.require_master_key = true 20 | 21 | # Disable serving static files from the `/public` folder by default since 22 | # Apache or NGINX already handles this. 23 | config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? 24 | 25 | # Compress JavaScripts and CSS. 26 | config.assets.js_compressor = :uglifier 27 | # config.assets.css_compressor = :sass 28 | 29 | # Do not fallback to assets pipeline if a precompiled asset is missed. 30 | config.assets.compile = false 31 | 32 | # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb 33 | 34 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 35 | # config.action_controller.asset_host = 'http://assets.example.com' 36 | 37 | # Specifies the header that your server uses for sending files. 38 | # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache 39 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX 40 | 41 | # Store uploaded files on the local file system (see config/storage.yml for options) 42 | config.active_storage.service = :local 43 | 44 | # Mount Action Cable outside main process or domain 45 | # config.action_cable.mount_path = nil 46 | # config.action_cable.url = 'wss://example.com/cable' 47 | # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] 48 | 49 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 50 | # config.force_ssl = true 51 | 52 | # Use the lowest log level to ensure availability of diagnostic information 53 | # when problems arise. 54 | config.log_level = :debug 55 | 56 | # Prepend all log lines with the following tags. 57 | config.log_tags = [ :request_id ] 58 | 59 | # Use a different cache store in production. 60 | # config.cache_store = :mem_cache_store 61 | 62 | # Use a real queuing backend for Active Job (and separate queues per environment) 63 | # config.active_job.queue_adapter = :resque 64 | # config.active_job.queue_name_prefix = "dummy_#{Rails.env}" 65 | 66 | config.action_mailer.perform_caching = false 67 | 68 | # Ignore bad email addresses and do not raise email delivery errors. 69 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 70 | # config.action_mailer.raise_delivery_errors = false 71 | 72 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 73 | # the I18n.default_locale when a translation cannot be found). 74 | config.i18n.fallbacks = true 75 | 76 | # Send deprecation notices to registered listeners. 77 | config.active_support.deprecation = :notify 78 | 79 | # Use default logging formatter so that PID and timestamp are not suppressed. 80 | config.log_formatter = ::Logger::Formatter.new 81 | 82 | # Use a different logger for distributed setups. 83 | # require 'syslog/logger' 84 | # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') 85 | 86 | if ENV["RAILS_LOG_TO_STDOUT"].present? 87 | logger = ActiveSupport::Logger.new(STDOUT) 88 | logger.formatter = config.log_formatter 89 | config.logger = ActiveSupport::TaggedLogging.new(logger) 90 | end 91 | 92 | # Do not dump schema after migrations. 93 | config.active_record.dump_schema_after_migration = false 94 | end 95 | -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # The test environment is used exclusively to run your application's 5 | # test suite. You never need to work with it otherwise. Remember that 6 | # your test database is "scratch space" for the test suite and is wiped 7 | # and recreated between test runs. Don't rely on the data there! 8 | config.cache_classes = true 9 | 10 | # Do not eager load code on boot. This avoids loading your whole application 11 | # just for the purpose of running a single test. If you are using a tool that 12 | # preloads Rails for running tests, you may have to set it to true. 13 | config.eager_load = false 14 | 15 | # Configure public file server for tests with Cache-Control for performance. 16 | config.public_file_server.enabled = true 17 | config.public_file_server.headers = { 18 | 'Cache-Control' => "public, max-age=#{1.hour.to_i}" 19 | } 20 | 21 | # Show full error reports and disable caching. 22 | config.consider_all_requests_local = true 23 | config.action_controller.perform_caching = false 24 | 25 | # Raise exceptions instead of rendering exception templates. 26 | config.action_dispatch.show_exceptions = false 27 | 28 | # Disable request forgery protection in test environment. 29 | config.action_controller.allow_forgery_protection = false 30 | 31 | # Store uploaded files on the local file system in a temporary directory 32 | config.active_storage.service = :test 33 | 34 | config.action_mailer.perform_caching = false 35 | 36 | # Tell Action Mailer not to deliver emails to the real world. 37 | # The :test delivery method accumulates sent emails in the 38 | # ActionMailer::Base.deliveries array. 39 | config.action_mailer.delivery_method = :test 40 | 41 | # Print deprecation notices to the stderr. 42 | config.active_support.deprecation = :stderr 43 | 44 | # Raises error for missing translations 45 | # config.action_view.raise_on_missing_translations = true 46 | end 47 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # ActiveSupport::Reloader.to_prepare do 4 | # ApplicationController.renderer.defaults.merge!( 5 | # http_host: 'example.org', 6 | # https: false 7 | # ) 8 | # end 9 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Version of your assets, change this if you want to expire all your assets. 4 | Rails.application.config.assets.version = '1.0' 5 | 6 | # Add additional assets to the asset load path. 7 | # Rails.application.config.assets.paths << Emoji.images_path 8 | # Add Yarn node_modules folder to the asset load path. 9 | Rails.application.config.assets.paths << Rails.root.join('node_modules') 10 | 11 | # Precompile additional assets. 12 | # application.js, application.css, and all non-JS/CSS in the app/assets 13 | # folder are already added. 14 | # Rails.application.config.assets.precompile += %w( admin.js admin.css ) 15 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Define an application-wide content security policy 4 | # For further information see the following documentation 5 | # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy 6 | 7 | # Rails.application.config.content_security_policy do |policy| 8 | # policy.default_src :self, :https 9 | # policy.font_src :self, :https, :data 10 | # policy.img_src :self, :https, :data 11 | # policy.object_src :none 12 | # policy.script_src :self, :https 13 | # policy.style_src :self, :https 14 | 15 | # # Specify URI for violation reports 16 | # # policy.report_uri "/csp-violation-report-endpoint" 17 | # end 18 | 19 | # If you are using UJS then enable automatic nonce generation 20 | # Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) } 21 | 22 | # Report CSP violations to a specified URI 23 | # For further information see the following documentation: 24 | # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only 25 | # Rails.application.config.content_security_policy_report_only = true 26 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Specify a serializer for the signed and encrypted cookie jars. 4 | # Valid options are :json, :marshal, and :hybrid. 5 | Rails.application.config.action_dispatch.cookies_serializer = :json 6 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure sensitive parameters which will be filtered from the log file. 4 | Rails.application.config.filter_parameters += [:password] 5 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, '\1en' 8 | # inflect.singular /^(ox)en/i, '\1' 9 | # inflect.irregular 'person', 'people' 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym 'RESTful' 16 | # end 17 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # To enable root element in JSON for ActiveRecord objects. 12 | # ActiveSupport.on_load(:active_record) do 13 | # self.include_root_in_json = true 14 | # end 15 | -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t 'hello' 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t('hello') %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # The following keys must be escaped otherwise they will not be retrieved by 20 | # the default I18n backend: 21 | # 22 | # true, false, on, off, yes, no 23 | # 24 | # Instead, surround them with single quotes. 25 | # 26 | # en: 27 | # 'true': 'foo' 28 | # 29 | # To learn more, please read the Rails Internationalization guide 30 | # available at http://guides.rubyonrails.org/i18n.html. 31 | 32 | en: 33 | hello: "Hello world" 34 | -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- 1 | # Puma can serve each request in a thread from an internal thread pool. 2 | # The `threads` method setting takes two numbers: a minimum and maximum. 3 | # Any libraries that use thread pools should be configured to match 4 | # the maximum value specified for Puma. Default is set to 5 threads for minimum 5 | # and maximum; this matches the default thread size of Active Record. 6 | # 7 | threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } 8 | threads threads_count, threads_count 9 | 10 | # Specifies the `port` that Puma will listen on to receive requests; default is 3000. 11 | # 12 | port ENV.fetch("PORT") { 3000 } 13 | 14 | # Specifies the `environment` that Puma will run in. 15 | # 16 | environment ENV.fetch("RAILS_ENV") { "development" } 17 | 18 | # Specifies the number of `workers` to boot in clustered mode. 19 | # Workers are forked webserver processes. If using threads and workers together 20 | # the concurrency of the application would be max `threads` * `workers`. 21 | # Workers do not work on JRuby or Windows (both of which do not support 22 | # processes). 23 | # 24 | # workers ENV.fetch("WEB_CONCURRENCY") { 2 } 25 | 26 | # Use the `preload_app!` method when specifying a `workers` number. 27 | # This directive tells Puma to first boot the application and load code 28 | # before forking the application. This takes advantage of Copy On Write 29 | # process behavior so workers use less memory. 30 | # 31 | # preload_app! 32 | 33 | # Allow puma to be restarted by `rails restart` command. 34 | plugin :tmp_restart 35 | -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | get 'home/index' 3 | root to: 'home#index' 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/config/spring.rb: -------------------------------------------------------------------------------- 1 | %w[ 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ].each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- 1 | test: 2 | service: Disk 3 | root: <%= Rails.root.join("tmp/storage") %> 4 | 5 | local: 6 | service: Disk 7 | root: <%= Rails.root.join("storage") %> 8 | 9 | # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) 10 | # amazon: 11 | # service: S3 12 | # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> 13 | # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> 14 | # region: us-east-1 15 | # bucket: your_own_bucket 16 | 17 | # Remember not to checkin your GCS keyfile to a repository 18 | # google: 19 | # service: GCS 20 | # project: your_project 21 | # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> 22 | # bucket: your_own_bucket 23 | 24 | # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) 25 | # microsoft: 26 | # service: AzureStorage 27 | # storage_account_name: your_account_name 28 | # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> 29 | # container: your_container_name 30 | 31 | # mirror: 32 | # service: Mirror 33 | # primary: local 34 | # mirrors: [ amazon, google, microsoft ] 35 | -------------------------------------------------------------------------------- /test/dummy/db/migrate/20190313194001_create_users.rb: -------------------------------------------------------------------------------- 1 | class CreateUsers < ActiveRecord::Migration[5.2] 2 | def change 3 | create_table :users do |t| 4 | t.string :name 5 | t.integer :age 6 | 7 | t.timestamps 8 | end 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- 1 | # This file is auto-generated from the current state of the database. Instead 2 | # of editing this file, please use the migrations feature of Active Record to 3 | # incrementally modify your database, and then regenerate this schema definition. 4 | # 5 | # Note that this schema.rb definition is the authoritative source for your 6 | # database schema. If you need to create the application database on another 7 | # system, you should be using db:schema:load, not running all the migrations 8 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations 9 | # you'll amass, the slower it'll run and the greater likelihood for issues). 10 | # 11 | # It's strongly recommended that you check this file into your version control system. 12 | 13 | ActiveRecord::Schema.define(version: 2019_03_13_194001) do 14 | 15 | create_table "users", force: :cascade do |t| 16 | t.string "name" 17 | t.integer "age" 18 | t.datetime "created_at", null: false 19 | t.datetime "updated_at", null: false 20 | end 21 | 22 | end 23 | -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/lib/assets/.keep -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/log/.keep -------------------------------------------------------------------------------- /test/dummy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dummy", 3 | "private": true, 4 | "dependencies": {} 5 | } 6 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The page you were looking for doesn't exist.

62 |

You may have mistyped the address or the page may have moved.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The change you wanted was rejected.

62 |

Maybe you tried to change something you didn't have access to.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

We're sorry, but something went wrong.

62 |
63 |

If you are the application owner check the logs for more information.

64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/public/apple-touch-icon.png -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/execute_sql/967fc594d8c66fccf0e8197e5b40597fb6f29284/test/dummy/public/favicon.ico -------------------------------------------------------------------------------- /test/execute_sql_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ExecuteSql::Test < ActiveSupport::TestCase 4 | test "works" do 5 | User.create(name: 'John', age: 20) 6 | User.create(name: 'Bob', age: 25) 7 | User.create(name: 'Michael', age: 30) 8 | ExecuteSql.execute_sql("SELECT * from users") 9 | ExecuteSQL.execute_sql("SELECT * from users where age > 26") 10 | puts ExecuteSQL.run("SELECT * from users where age > 26", mode: :single) 11 | puts ExecuteSQL.run("SELECT * from users where age > 26", mode: :raw) 12 | puts ExecuteSQL.run("SELECT * from users where age > 26", mode: :none) 13 | puts ExecuteSQL.run("SELECT * from users where age > 26", mode: :array) 14 | puts ExecuteSQL.run("SELECT * from users where age > 26", mode: :array, klass: User) 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | # Configure Rails Environment 2 | ENV["RAILS_ENV"] = "test" 3 | 4 | require_relative "../test/dummy/config/environment" 5 | ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)] 6 | require "rails/test_help" 7 | 8 | # Filter out Minitest backtrace while allowing backtrace from other libraries 9 | # to be shown. 10 | Minitest.backtrace_filter = Minitest::BacktraceFilter.new 11 | 12 | require "rails/test_unit/reporter" 13 | Rails::TestUnitReporter.executable = 'bin/test' 14 | 15 | # Load fixtures from the engine 16 | if ActiveSupport::TestCase.respond_to?(:fixture_path=) 17 | ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__) 18 | ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path 19 | ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files" 20 | ActiveSupport::TestCase.fixtures :all 21 | end 22 | --------------------------------------------------------------------------------