I created a view with column name in german word and I tried to select the data.
Eg.
I get the following error in log:
Edit: For the workaround, I am avoiding special characters in the view. Just want to learn if there is a way to insist using the special characters.
Eg.
SQL:
SELECT
`Color`,
`Januar` AS `January`,
`Februar` AS `February`,
`März` AS `March`,
`April` AS `April`,
`Mai` AS `May`,
`Juni` AS `June`,
`Juli` AS `July`,
`August` AS `August`,
`September` AS `September`,
`Oktober` AS `October`,
`November` AS `November`,
`Dezember` AS `December`,
`Total`
FROM view_Color
I get the following error in log:
May I know how I can solve this error?Waiting for debugger to connect...
Program started.
closing old db.
ResponseError. Reason: java.sql.SQLSyntaxErrorException: Unknown column 'März' in 'field list', Response: <html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Error 500 java.sql.SQLSyntaxErrorException: Unknown column 'März' in 'field list'</title>
</head>
<body><h2>HTTP ERROR 500</h2>
<p>Problem accessing /rdc. Reason:
<pre> java.sql.SQLSyntaxErrorException: Unknown column 'März' in 'field list'</pre></p><hr><a href="http://eclipse.org/jetty">Powered by Jetty:// 9.4.z-SNAPSHOT</a><hr/>
</body>
</html>
Edit: For the workaround, I am avoiding special characters in the view. Just want to learn if there is a way to insist using the special characters.
Last edited: