We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we have method void FbVarChar::set(const char* s) for null-terminated string.
void FbVarChar::set(const char* s)
It's good to have an overload void FbVarChar::set(const char* s, unsigned len) for non null-terminated strings.
void FbVarChar::set(const char* s, unsigned len)
The text was updated successfully, but these errors were encountered:
Methods accepting std::string and std::wstring also would be good.
Sorry, something went wrong.
Improvement #7685 - Add overload FbVarChar::set function for non null…
736fa42
…-terminated string.
asfernandes
No branches or pull requests
Currently we have method
void FbVarChar::set(const char* s)
for null-terminated string.It's good to have an overload
void FbVarChar::set(const char* s, unsigned len)
for non null-terminated strings.The text was updated successfully, but these errors were encountered: