I use P4.Net to connect to my server other than unicode, however some of the commands that I run with work with:
"Unicode clients require a unicode enabled server."
How do I change P4CHARSET to none in P4.Net? I tried
P4Connection p4 = new P4Connection();
p4.Charset = "none"
p4.Connect()
I also tried changing Charset just before the p4.Run command:
p4.Charset = "none"
p4.Run("where", "c:\\some\\random\\dir");
I tried setting Charset to "none", null and "".
if I try to pass global parameters to the p4.Run command, it does not work either. i.e.
p4.Run("-C none where", "c:\\some\\random\\dir");
Unable to execute Unknown Command
Has anyone had success with changing P4CHARSET in a P4.Net script? how do you do it
source
share