Storing SQL in MySQL: Insert as Text?
Posted
by Tim F
on Stack Overflow
See other posts from Stack Overflow
or by Tim F
Published on 2010-05-28T17:23:21Z
Indexed on
2010/05/28
17:32 UTC
Read the original article
Hit count: 122
Hey all,
Working in a team environment, each one of us has put together our own list of SQL statements that we use to help with our day to day job functions. As the case often is, there may be some redundancy with this, and we are often in need of each other's statements. To circumvent this, I'm looking to put together a small app that can be used to store and search for these SQL statements.
To begin with, I'm keeping it basic, just storing and searching the statements. This may build out to be the actual execution at some point in the future, but I'm not concerning myself with this at the time.
This will be built with PHP and MySQL - Should I store the SQL as text, or is there something that I need to be concerned with?
© Stack Overflow or respective owner