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?