Viewing 15 posts - 31 through 45 (of 937 total)
Good deal. If you need more info, there are some really good code samples in the Irony source download at http://www.sourceforge.net/irony.
Thanks
Mike C
April 22, 2011 at 5:47 pm
webmaster 46469 (4/21/2011)
I initialize the compiler earlier,Dim _compiler As Irony.Compiler.LanguageCompiler
You declared it, but didn't instantiate it. Try something like this:
Dim _compiler As New Irony.Compile.LanguageCompiler
(I'm not 100% sure what the constructor...
April 21, 2011 at 4:42 pm
webmaster 46469 (4/21/2011)
One issue I'm having on build now is:
Object...
April 21, 2011 at 3:13 pm
webmaster 46469 (4/19/2011)
April 19, 2011 at 3:37 pm
Ahhh, you need to handle unbalanced parentheses. I believe Irony continues to try to parse your input string after an error is encountered. You may be able to leverage that...
April 19, 2011 at 3:34 pm
Good deal, glad to hear it's working well for you! I'm working on another project incorporating the awesome Irony library now, planning to demo it in about a week or...
March 30, 2011 at 7:11 pm
Here you go. It's not really a good solution, but it's not a particularly well-defined business problem either. And the tables used in the example are really lacking....
February 17, 2011 at 6:16 pm
I think you just encountered my point. You haven't spelled out all your business rules yet. You just added another one to your list, but a solution that does what...
February 17, 2011 at 1:27 pm
Very interesting. I hope you can share, I'd like to see how you handled operator precedence and all that.
February 17, 2011 at 5:17 am
Very interesting! Just wondering, but how many lines of code did you end up writing for that? Did you use recursion at all? Did you go with...
February 16, 2011 at 3:49 pm
For portability across enviromments without using sql clr you might consider a middle-tier app, like a web service or something. If it absolutely has to be done in the database...
February 16, 2011 at 3:05 pm
OK, so long as you don't care which is paired with which that should work well for you.
February 16, 2011 at 3:01 pm
Hi bugmesh
Unfortunately I don't know of a simple or efficient way to do this in pure T-SQL. Essentially you want a T-SQL based parser and lexical analyzer. That functionality doesn't...
February 16, 2011 at 12:39 pm
Look up and play with EncryptByPassPhrase first. Once you have that going, look into EncryptByKey. EncryptByPassPhrase doesn't have all the setup requirements that encryption by symmetric key has. And listen...
February 16, 2011 at 7:26 am
Just wondering, what leads you to believe the second result is the correct result?
February 16, 2011 at 7:20 am
Viewing 15 posts - 31 through 45 (of 937 total)