Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

closed as off topic by finnw, C. A. McCann, Linger, Jan Hančič, petert Nov 27 '12 at 15:06

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

32 Answers

1 2
up vote 121 down vote accepted

I think the verb you want is 'compose'.

share|improve this answer
3  
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
19  
@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
2  
10  
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 '09 at 19:35
2  
Oh wow, I didn't check the dates on this... SO question necromancy! – Daniel Schaffer Oct 20 '09 at 19:37
show 6 more comments

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.

share|improve this answer

I would use one of these:

  • ToString()
  • ToSQL()
  • Render()
share|improve this answer

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.

share|improve this answer
show 1 more comment

The opposite of parse is serialize

share|improve this answer

ToQueryString()

share|improve this answer

The antonym of 'analyze' is 'synthesize'.

share|improve this answer
1  
synthesize. good choice. – MikeJ Sep 29 '08 at 16:21

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.

share|improve this answer
show 3 more comments

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.

share|improve this answer

Definitely Render.

share|improve this answer

generateQuery, possibly? createQuery?

share|improve this answer
show 1 more comment

I would call it constructQuery.

share|improve this answer

generate or emit, possibly.

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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

share|improve this answer
show 1 more comment

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.

share|improve this answer

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).

share|improve this answer

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

share|improve this answer

What about asSQL() or even more asQuery()?

share|improve this answer

To complement your existing naming, composeQuery looks best.

But in the general case, the opposite of parse is ǝsɹɐd

share|improve this answer

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

share|improve this answer

I'd use render

> a = 'html': { 'head': {'title': 'My Page'}, 'body': { 'h1': 'Hello World', 'p': 'This is a Paragraph' } }

> b = render(a)

> console.log(b)

<html>
    <head>
        <title>My Page</title>
    </head>
    <body>
        <h1>Hello World</h1>
        <p>This is a Paragraph</p>
    </body>
</html>

Which is IMHO, the opposite to parse()

> c = parse(b)

{ 'html': {
    'head': {
        'title': 'My Page'
    }
    'body': {
        'h1': 'Hello World',
        'p': 'This is a Paragraph'
    }
}
share|improve this answer

Take your pick

  • Generate
  • Dump
  • Serialize
  • Emit

They each have slightly different connotations.

share|improve this answer

INHO Serialize, synthesize are good options. Also, as you have named parseQuery, i will go with codeQuery

share|improve this answer

+1 for ToQuery() or ToSQL()

share|improve this answer

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.

share|improve this answer
1 2

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