0
Varchar vs string
Can we also use string instead of varchar? What’s the difference?
1 Respuesta
+ 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?