Precedence of "where" ("of", "is", "will")?Nobody on #perl6 today could answer this one. Is:
Str | Int where { $_ }
the same as:
(Str | Int) where { $_ }
or:
Str | (Int where { $_ })
?
Followup questions, Mr. President:
What kind of operators are "where", "of", "is", and "will"?
Is there a reason that S03 doesn't list them?
What are their precedence(s)?
--
Chip Salzenberg - a.k.a. - <chip@pobox.com>
Open Source is not an excuse to write fun code
then leave the actual work to others.
Chip Salzenberg writes:
&...
.ALLCOL("%COLUMN%", " ", ", ", ", ")Do you know anyway for me to exclude a subset of columns returned by this
function. We have two columns (rec_user and rec_datetime) which are in all
of our tables, but when generating triggers I want automatically generate a
script which does not include those two columns but does include all other
columns in that table.
Bruce
I should add that I am using PD 9.0.0.580.
Bruce
"Bruce Lamb" <lamb.bruce@mayo.edu> wrote in message
news:6HgI315nCHA.155@forums.sybase.com...
> Do you know anyway for me to exclude a subset of columns returned by this
> function. ...
WISH: Undo for "Close All Tabs" or "Close Other Tabs"It seems that I often mess up and click "close other tabs" or "close all
tabs" when I mean to click "Close this tab"
Is there anyway we could have a fast undo for this mistake? Thanks
On 24/07/2003 12:10, Brian King wrote:
> It seems that I often mess up and click "close other tabs" or "close all
> tabs" when I mean to click "Close this tab"
>
> Is there anyway we could have a fast undo for this mistake? Thanks
http://multizilla.mozdev.org has this capability. If you right-click on
the bar that the ...
quotes, quotes, quotes...I am getting this error and I know what is causing it, but I have no idea
how to fix it, any help would be great. The script steps through the
/var/log/messages file on a linux server and puts
The entries into a mysql database. However when it gets to the 'hlt' line in
the messages file it just barfs. The single quotes are freaking it out. I
know about quotes but not how to use in
this situation.
Thanks,
Paul
Error:
May 27 17:53:00 localhost kernel: Checking 'hlt' instruction... OK.
<----- doesn't like this in the messages file
DBD::mysql::st exec...
suggestion: "Close Tabs to the Left", "Close Tabs to the Right"I would find it useful if in addition to the "Close Other Tabs"
command, there were a way to "Close Tabs to the Left" and "Close Tabs
to the Right" when you right-click on a particular tab. Particularly
when I've exhausted a train of thought that might consist of a number
of tabs, it'd be nice to be able to just close all tabs to the right
of the last tab before that train of thought. This may be peculiar to
the way I abuse tabs but I'm just throwing it out there in case I'm
not alone.
...
When is "close" not really "close"I've had a strange thing occur a couple of times.
When I leave at night, I leave my computer on, but close Thunderbird.
That way, I can VPN in from home and view the mail store, but still
access e-mail through POP3.
One night, a week or so ago, I checked POP3 from home and noticed the
mailbox was empty. That's impossible; I get about 500 messages a day.
So, I took control of my desktop session and looked around. Thunderbird
was not visible, but it was still running in the background.
I have since determined that if I close it with the "X" icon at upper
...
Is "Bug Changes" multi-select an "and" or an "or"?Either I'm confused, or there is a defect with the way that advanced
searching in the "Bug Changes" box works (perhaps both).
I created 2 new Bugs
http://landfill.bugzilla.org/bugzilla-2.20-branch/show_bug.cgi?id=2841
and
http://landfill.bugzilla.org/bugzilla-2.20-branch/show_bug.cgi?id=2842
2841 is just new. No PCR chagnes of any form. 2842 is new, but with
the status changed (I accepted the bug).
Then I ran two queries. First I unselected everything, then in the
"Bug Changes" box I selected:
Only bugs changed in 2d with "[Bug creation]" ...
replace the "." with a ","
Oi.... I need to build a small programm in ASP.NET and chose to use C# for it.Now i got everything working but there's one little problem.the first textbox is a double. I need to make it so that when someone enters a "." then it gets replaced by a ","any ideas?Ghan
string blah = "4.2.2.2";blah = blah.Replace(".", ",");Ryan Ryan OlshanASPInsider | Microsoft MVP, ASP.NEThttp://ryanolshan.comHow to ask a question...
Using "+" or "||"Using SQLAnywhere 5.5.04, I've gotten into the habit of using "||" in
ISQL to indicate a string concatenation. I needed to paste my SQL
statement into the PowerBuilder script painter for some embedded SQL, and
PB didn't like the "||" very much at all. I changed it to "+" and it
seems to be ok. Do these two operators indicate ~exactly~ the same
thing?
moin,
afaik these two's are not the same!
if you're using "||" and any term is NULL then in the resultstring the term
will be ignored
if you use "+" then the resu...
Replacing "\\" with "\"
Hi all
I'm getting this value from a CheckBoxList control - a location of file, i have to remove "\\" and replace it with "\" and pass it to Query, how to do it, i tried with Replace, but coud'nt suceed.
"\\\\Blaze10xp\\BLZ_SFS_07\\Sample Excel Files\\Excel Files\\report2.xls"
thank's in advance
- Prakash.C
you tried Replace like this?
string newstring = oldstring.Replace(@"\\",@"\");Plese, do not forget to click "Mark as Answer" on the post that helped you. Thanx!My blog: Scenes From A Developer Memory
yes i tr...
"Me" is better than "You"Yes I know, strings are frozen.
But let me talk about it, I really can't get through the idea of a PC
talkin to me.
I consider my PC as an extension of myself, not a dumb companion who
addresses Me as You. Yes there are times when I get angry with Him while
I work and get wrong calculations etc.., but it really is my fault, Me
using wrong istructions and eventually wanting to find someone else to
blame, but it's Me. And yes, I consider Thunderbird my mail program,
reading my mail on my PC as Me.
So I personally like to have Me in the header bar as a compact address
...
double quote
hello there...
i tried everything of think but not working the way i wanted to be... not sure what i'm missing...i'm generating a <span> in code behind and then using in javascript....
here is what i'm doing
code behind:
int i=0string _keywordID = "keyword";string _name = row["visit_info_nm"].ToString().Trim(); String _getElementByID = String.Format("<span id='{0}' OnClick = \"document.getElementById('{1}').value='{2}';\">{3}</span><br>", i, _keywordID, _name, _name);
here is what it generate :
<span id='1' OnClick = \"document.getElementById('keyword')...
"Using" or "With"
Hi all
Please can someone enlighten to me as regards the difference with the "Using" and "With" statement when accessing data - which is better, what are the limitations and/or any pointers. Many thanks.
Regards
DaveDavid WinchesterPlease mark as answer if this is the solution.
using gives you the ability to use the connection and it closes the connection directlly after you finish using it. and there is no need to try- cach - finaly. there is no limitation on using USING keywordMuhanad YOUNISMCSD.NETMy Blog || My Photos || LinkedIn
I have a dataobject the re...
"-" not "_"
I wrote a SQL statement in the data tab. I wrote a bunch of alaises as example ' word-type ' but when I hit the layout tab it converts the "-" to "_". So now my field name is ' word_type '. Is there any way to prevent this? CardGunner
Don' use a hypen ( - ). It isn't a valid character for column names.
See http://searchsqlserver.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid87_gci1188931,00.html
Here's an excerpt about column names:
Letters as defined in the Unicode Standard 2.0
Decimal numbers from either B...