Tagged Questions

8
votes
6answers
623 views

What’s the difference between “keyword” and “reserved word”?

What's the difference between keyword and reserved word? Fore example in the concepts' proposal one can read the following statement This proposal introduces five new keywords: concept, concept map, …
4
votes
6answers
397 views

What is the equivalent of Java’s final in C#?

What is the equivalent of Java's final in C#? EDIT: Sorry, I should have been clearer. I meant what is the equivalent when applied to a member variable - so it must be assigned once and only once.
3
votes
6answers
472 views

Do you check your field- and table names against reserved word lists ?

I've sometimes had a problem with my field-, table-, view- oder stored procedure names. Example: SELECT from, to, rate FROM Table1 The Problem is that from is a reserved word in SQL-92. You …
2
votes
2answers
195 views

How do you escape a reserved word in Delphi?

I need to Escape a reserved word to use it as an identifier in Delphi. I thought that was accomplished by using the ampersand "&", but that doesn't seem to be working right. Any other …
2
votes
2answers
127 views

Is there a list of reserved FlashVars names?

Currently I work on localization for a Flex application. From an article I know that you can control the localization with the following FlashVars: resourceModuleURLs localeChain Are there any …
2
votes
12answers
458 views

Reserved words as variable or method names

Is there any tricky way to use Java reserved words as variable or method names?
1
vote
8answers
170 views

How can I best avoid using reserved or key words in my language or framework?

Naming things is hard. When naming my classes, variables, and methods I strive to avoid collisions with reserved words or keywords in my languages (MSSQL, VB.NET or C#, HTML, CSS, jQuery) and …
1
vote
4answers
132 views

Is ‘event’ a reserved word in JavaScript?

Hi, I am a beginner to Javascript. And when I was practicing I have noticed something. Take this function: <script type="text/javascript"> function showChar(sSomeData, oEvent) { …
1
vote
4answers
471 views

How do I escape a reserved word in oracle

In TSQL I could use something like Select [table] from tablename to select a column named "table". How do I do this for reserved words in oracle? Edit: I've tried square braces, double quotes, …
1
vote
2answers
89 views

SOAPpy - reserved word in named parameter list

I'm using SOAPpy to access a SOAP Webservice. This call to the function findPathwaysByText works just fine: server.findPathwaysByText (query= 'WP619', species = 'Mus musculus') However, this call …
1
vote
1answer
160 views

How can I change SOAP element names to reserved words in Delphi?

I use this line to register a class with the Delphi registry for Soap elements: RemClassRegistry.RegisterXSClass(ToHeader, ADD_URI); In the Soap request message, I see this: <NS1:ToHeader> …
0
votes
5answers
57 views

Variable name taken by keyword — your examples?

Have there been any cases where you wanted to use a word as a variable/function name, but couldn't because it was a reserved word in your language? The ones that crop up over and over again for me …
0
votes
1answer
96 views

Really Weird ASP.Net Reserved Request.Form key name

I seem to have stumbled across a really weird issue when posting a static HTML page to an ASP.NET page: Example: <form action="Kiosk.aspx" method="post"> <input type="hidden" id="key" …
0
votes
1answer
45 views

Using illegal names in MySQL through SQLObject

How to use illegal names for MySQL with SQLObject? In pure SQL it is possible to use backquotes, say: SELECT `select from` FROM table1 WHERE 1; ...can be used to select the field called select …
0
votes
3answers
186 views

Is MonthName a reserved word in SQL 2008

I am creating a table that has a column called MonthName. When I defined this column the word "MonthName" showed up in blue like it was a reserved word. So I tried to look it up. I cannot find it in …

1 2 next
15 30 50 per page