summaryrefslogtreecommitdiff
path: root/db-query.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db-query.rb')
-rwxr-xr-xdb-query.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db-query.rb b/db-query.rb
deleted file mode 100755
index 3a3fa70..0000000
--- a/db-query.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'sqlite3'
-
-def main
- db = SQLite3::Database.new ARGV[0]
- db.execute("select * from power") do |result|
- puts result.to_s
- end
- db.close
-end
-
-
-main