I know SQL CE does not support transact sql. However, I would think there would be a library out there that can parse a transact sql file (at least a subset for tsql) and execute it for me. For now, i'm really only looking for the if else functionality (as well as all that SQL CE already supports), but i'm sure i'll need more soon. Is there anything out there that can do this.

Basically, i would write the TSQL. I would pass it to this library. Anything SQL CE can execute, the library would pass it down. Anything it could not execute, such as an if else, this would have to be executed by the C# code, i.e. in the library.

Any ideas?

link|improve this question

60% accept rate
I suspect this is overly ambitious. Personally, I would find it hard to trust such a tool... – Marc Gravell Jun 17 '11 at 20:09
feedback

1 Answer

I believe, technically, it is a subset of T-SQL, so it supports a great deal of the syntax. TOP, HAVING, DISTINCT, and a few other choice words are not allowed. Unfortunately, I know of no library that will translate for you. The problem is many, if not most/all, of the missing items have no way to duplicate in SQL only solution.

link|improve this answer
Like i said, if whatever it was could add the "IF ELSE" functionality which is missing it would be great. It could also add other missing commands such as GETUTCDATE maybe, etc. I'm not asking for something THAT complicated i don't think – Mark Jun 17 '11 at 18:00
feedback

Your Answer

 
or
required, but never shown

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