Top "Reserved-words" questions

reserved words are specific words in any language which are banned from use by authors, because of the special meaning they have in the language.

What does the @ symbol before a variable name mean in C#?

Possible Duplicate: What's the use/meaning of the @ character in variable names in C#? I understand that the @ symbol can …

c# variables naming specifications reserved-words
Syntax error due to using a reserved word as a table or column name in MySQL

I'm trying to execute a simple MySQL query as below: INSERT INTO user_details (username, location, key) VALUES ('Tim', 'Florida', 42) …

mysql reserved-words
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 …

oracle reserved-words
SQL error: Incorrect syntax near the keyword 'User'

I am using SQL to insert data to SQL Database file using C# as follows. String cs = System.Configuration.ConfigurationManager.…

c# sql sql-server tsql reserved-words
Reserved keywords in JavaScript

What JavaScript keywords (function names, variables, etc) are reserved?

javascript reserved-words
What is the difference between "keyword" and "reserved word"?

What's the difference between a keyword and a reserved word? For example, in the proposal for concepts in C++ one …

language-agnostic programming-languages syntax keyword reserved-words
Cannot create a database table named 'user' in PostgreSQL

It seems PostgreSQL does not allow to create a database table named 'user'. But MySQL will allow to create such …

postgresql hibernate identifier reserved-words
What's the use/meaning of the @ character in variable names in C#?

I discovered that you can start your variable name with a '@' character in C#. In my C# project …

c# variables naming specifications reserved-words
What is the "type" reserved word in TypeScript?

I just noticed when trying to create an interface in TypeScript that "type" is either a keyword or a reserved …

typescript keyword reserved-words