vote up 30 vote down star
5

I have a function, parseQuery, that parses a SQL query into an abstract representation of that query.

I'm about to write a function that takes an abstract representation of a query and returns a SQL query string.

What should I call the second function?

flag

47% accept rate

26 Answers

vote up 69 vote down check

I think the verb you want is 'compose'.

link|flag
Thanks for validating my (independently derived) answer. – Mike Brown Sep 29 '08 at 14:22
Would someone please tell me why this answer got upvoted 43 times? I mean I know it's right, but 40+ votes?? – Mitch Wheat Dec 27 '08 at 9:53
6  
@Mitch Wheat: sadly that's how SO works. It doesn't matter how good your answer is (or how much time you put into it). All it matters is how many people like it. I used to spend too much time writing valid answers to obscure questions and getting no feedback at all, while other's "Yes/No"s got +100. – efotinis Dec 27 '08 at 10:06
If it makes you feel any better, I think I only earned maybe 40 rep for this rather than 430, as I had already hit the cap that day. – Joel Coehoorn Dec 27 '08 at 21:09
3  
I mean, coming back a year later I'd even answer 'assemble' as a better opposite, or 'build' as a better function name. – Joel Coehoorn Oct 20 at 19:35
show 6 more comments
vote up 4 vote down

generateQuery, possibly? createQuery?

link|flag
vote up 1 vote down

Possibly Format(). or ToSQL() in your instance?

link|flag
vote up 5 vote down

I would call it constructQuery.

link|flag
vote up 8 vote down

ToQueryString()

link|flag
vote up 3 vote down

Maybe prettyPrintQuery?

link|flag
vote up 2 vote down

generate or emit, possibly.

link|flag
vote up 4 vote down

The antonym of 'analyze' is 'synthesize'.

link|flag
1  
synthesize. good choice. – MikeJ Sep 29 '08 at 16:21
vote up 2 vote down

unParse()? Just kidding, I would go with toQueryString()

link|flag
DeParse is what I've used – Mike Dunlavey Nov 19 '08 at 0:41
vote up 21 vote down

Compose? When parsing a query you break it into its constituent parts (tokens, etc.), the reverse would be composing the parts into a string query.

link|flag
vote up 4 vote down

I think "serialize" is probably the word you want. It means to produce a textual representation of data that can be exported (and imported) from the program.

link|flag
Serialize can just as easily mean a binary representation. – Ben Hoffstein Sep 29 '08 at 14:27
True. Parsimg is all about fading in external data, and serialization is all about producing data for external uses. The format produced isn't required to be text, but often is. – Kyle Cronin Sep 29 '08 at 14:34
Apparently my iPod's keyboard is getting the better of me. That's supposed to be "parsing" and "reading". – Kyle Cronin Sep 29 '08 at 14:37
vote up 9 vote down

I would use one of these:

  • ToString()
  • ToSQL()
  • Render()
link|flag
vote up 1 vote down

flatten?

The parsed query object perhaps represents a condition hierarchy, which you are "flattening" back into a 1 dimensional string.

But given that you're going from object to string, really just use toString or toSQL() or something like that. Besides, if you designed it well and are using the right app, you can rename it later and just stick stuff in the comments on what it does.

link|flag
vote up 4 vote down

Just to add some stuff.

Surely parse is a two way word.

You can parse an abstract into a query.

You can parse a query into an abstract.

The question should be, what do you name the latter part of the method, and because in this instance you're parsing an abstract to make a query you'd call it parseAbstract.

To answer the question, parsing has no opposite.

link|flag
vote up 3 vote down

compose, construct, generate, render,condense, reduce, toSQL, toString depending on the nature of the class and its related operators

link|flag
vote up 0 vote down

+1 for ToQuery() or ToSQL()

link|flag
vote up 1 vote down

A traditional compiler has two parts: a parser and a code generator.

So you could call it "Generate". Of course, it's a little bit different here because the compiler isn't writing source code. (unless it's a precompiler).

link|flag
vote up 1 vote down

+1 for Generate, but tack on what you're generating, i.e. GenerateSQL()

link|flag
vote up 0 vote down

writeQuery. Parse is the act of reading it from a string and creating the object (let's say 'actual') representation. The opposite would be writing the object into a string.

link|flag
vote up 0 vote down

I voted for 'compose' but if you don't like that I would also suggest 'build'

link|flag
vote up 1 vote down

I'd say serialize and deserialize, instead of parse and ...

link|flag
vote up 3 vote down

The opposite of parse is serialize

link|flag
vote up 4 vote down

Definitely Render.

link|flag
vote up 2 vote down

In compiler terminology, the opposite is "unparse". Specifically, parsing turns a stream of tokens into abstract syntax trees, while unparsing turns abstract syntax trees into a stream of tokens.

link|flag
vote up 2 vote down

I would go for ToString(), since you can usually chain-nest them (opposite functions, that let you pass from Class1 to Class2 and vice-versa)

DateTime.Parse( DateTime.Parse( myDate.ToString() ).ToString() );

Serialize() looks like a nice choice, but it already has an opposite in Deserialize().

In your specific scenario, as other pointed out, ToSql() is another good choice.

link|flag
vote up 1 vote down

I believe the answer you're looking for is: "Don't parse SQL or assemble SQL in the first place. Use an Object/Relational Mapper and stop wasting your employer's money by solving problems that have already been solved for quite some time."

link|flag
-1. You have no idea what he's doing. He might have a perfectly good reason for doing it. Not all applications are the same. – erikkallen Oct 20 at 21:03
1  
I must agree, I had recently a perfectly good reason to parse SQL that had nothing to do with ORM's (which I used in the project as well). – Craig Oct 20 at 21:46
I'd love to hear this 'perfectly good reason'. No, actually I wouldn't. I could imagine if you were building a SQL IDE or something, but even then -- why are you building a SQL IDE when they are some heavy hitters in the market already? – chadmyers Oct 20 at 22:05
1  
Reason was basically we had to turn a query 'SELECT CustomerId FROM Customer' into something like 'SELECT <<field:25>> FROM <<table:76>>'. This is easy for basic select, very difficult for complex queries. – Craig Oct 20 at 22:35
1  
Please tell me how nHibernate would help me to do this? – Craig Oct 20 at 22:35
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.