You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Oracle has a varchar2 datatype, and it's the same as varchar (at least for now), but it can change in the future. Because of some scanning tools, like SonarCube yells at us to use varchar2 with the following reason:
Currently, VARCHAR and VARCHAR2 are identical data types. But to prevent future changes in behavior, Oracle recommends the use of VARCHAR2.
What do you want to change?
Oracle has a
varchar2
datatype, and it's the same asvarchar
(at least for now), but it can change in the future. Because of some scanning tools, like SonarCube yells at us to usevarchar2
with the following reason:varchar
is ANSI,varchar2
is Oracle.varchar
to generate code. People can still usevarchar
.Right now if I try to use
varchar2
it fails with syntax error):References:
What database engines need to be changed?
MySQL
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered: