【技术资料】SQL Formater Tool

One SQL format tool - ruby script.
If you want a exe program, you can search "ruby to exe" in google. :)
http://sqlformat.appspot.com/

程序代码 程序代码


require 'net/http'

@proxy_addr = '3.36.140.1'
@proxy_port = 80

def query
  
  puts 'sql:'
  data=STDIN.gets
  
  return if data.strip=='e' or data.strip=='exit'
  
  response = Net::HTTP.Proxy(@proxy_addr, @proxy_port).post_form(URI.parse("http://sqlformat.appspot.com/format/"),
  {'data'=>data,'format'=>'text','keyword_case'=>'upper','reindent'=>'true','n_indents'=>2})
  
  puts ''
  puts response.body
  puts ''
  
  query
  
end
puts '-- SQL Formater Desktop Version(input \'e\' to exit) --'
query



文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: SQL Formater tool
相关日志:
评论: 0 | 引用: 0 | 查看次数: 294
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭