0
Varchar vs string
Can we also use string instead of varchar? Whatâs the difference?
1 Answer
+ 8
str = "abc";
is equivalent to:
char data[] = {'a', 'b', 'c'}; String str = new String(data);
Can we also use string instead of varchar? Whatâs the difference?