UnixODBC reads ASCII?ANSI although It is compiled with iconv enabledHow to I do install DB2 ODBC?PHP-FPM - Nginx - phpMyAdmin - 502 bad gatewayWindows share locks up when php-fpm tries to access itHow to get rid of “Connecting to 127.0.0.1:80… failed: Connection refused.”?Working with Nodejs + MSSQL at Ubuntuisql working but not tsqlProblem with ssh connections between two machines with UbuntuCannot make local connection between Oracle SQL Developer and SQl plus
Preposition with спросить
Why does UNIX ed not have a prompt by default
Are Generation Ships inherently implausible?
Do insurance rates depend on credit scores?
Does the "stand your ground" law regarding shooting an intruder apply when the door of the dwelling was not locked?
Why choose the name "Morpheus" when it is the name of the Greek god of dreams
Taking volume contraction into account when mixing water with ethanol
Interval variables in MIP
Is Irish buttermilk different
What is the logic for the map maker classifying the map this way, specifically in Canada?
Professor Pun's Personal Project
What terminologies are used when ATC instructs a pilot to stop or proceed with his transmission?
If a picture of a screen is a screenshot, what is a video of a screen?
Cigarette in the ac vent
Is it safe to drive from Prague to Salzburg during winter?
Is there a material or method to allow "swimmable" coins?
Bash script if condition not working when called from Jenkins Pipeline
What should I do about a new employee who didn't mention their second job or planned leave?
Can I weaken a coil spring consisting of spring steel?
What is this sign with red triangle and black bottom up "T" on cars in Lithuania?
Who verifies the trust of certificate authorities?
How do professors and lecturers learn to teach?
In 4 spatial dimensions, would motion under a central force law be confined to a plane?
How to customize the Touch Bar interfaces for my tremor?
UnixODBC reads ASCII?ANSI although It is compiled with iconv enabled
How to I do install DB2 ODBC?PHP-FPM - Nginx - phpMyAdmin - 502 bad gatewayWindows share locks up when php-fpm tries to access itHow to get rid of “Connecting to 127.0.0.1:80… failed: Connection refused.”?Working with Nodejs + MSSQL at Ubuntuisql working but not tsqlProblem with ssh connections between two machines with UbuntuCannot make local connection between Oracle SQL Developer and SQl plus
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I have been searching for this issue for quite a while, please do not be quick to give me similar questions, here is the issue:
- I installed and configured unixodbc on ubuntu, connected it to
oracle and connection works - I installed and configured php-odbc,
also works with the unixodbc and connects to oracle - The issue is
that it retrieves data in ASCII and I cannot find any proper way to
force it to use utf8.
16.04 php oracle odbc
add a comment
|
I have been searching for this issue for quite a while, please do not be quick to give me similar questions, here is the issue:
- I installed and configured unixodbc on ubuntu, connected it to
oracle and connection works - I installed and configured php-odbc,
also works with the unixodbc and connects to oracle - The issue is
that it retrieves data in ASCII and I cannot find any proper way to
force it to use utf8.
16.04 php oracle odbc
What do you use to retrieve data and what points you to the conclusion that it is ASCII?
– Marc Vanhoomissen
Oct 3 at 7:38
I use odbc_fetch_array after odbc_exec, and two indicators show that it is ascii, ????? instead of garbled characters (so it is not a simple utf8 to another encoding method that I can use iconv) and I did mb_detect_encoding
– C. Geek
Oct 3 at 8:05
Could you make sure of the encoding on the server side and on the client side? It is then possible to useodbc_exec($this->link, "ALTER SESSION SET NLS_CHARACTERSET=UTF-8")
– Marc Vanhoomissen
Oct 3 at 11:51
Does not execute
– C. Geek
Oct 7 at 7:23
add a comment
|
I have been searching for this issue for quite a while, please do not be quick to give me similar questions, here is the issue:
- I installed and configured unixodbc on ubuntu, connected it to
oracle and connection works - I installed and configured php-odbc,
also works with the unixodbc and connects to oracle - The issue is
that it retrieves data in ASCII and I cannot find any proper way to
force it to use utf8.
16.04 php oracle odbc
I have been searching for this issue for quite a while, please do not be quick to give me similar questions, here is the issue:
- I installed and configured unixodbc on ubuntu, connected it to
oracle and connection works - I installed and configured php-odbc,
also works with the unixodbc and connects to oracle - The issue is
that it retrieves data in ASCII and I cannot find any proper way to
force it to use utf8.
16.04 php oracle odbc
16.04 php oracle odbc
asked Sep 28 at 14:23
C. GeekC. Geek
315 bronze badges
315 bronze badges
What do you use to retrieve data and what points you to the conclusion that it is ASCII?
– Marc Vanhoomissen
Oct 3 at 7:38
I use odbc_fetch_array after odbc_exec, and two indicators show that it is ascii, ????? instead of garbled characters (so it is not a simple utf8 to another encoding method that I can use iconv) and I did mb_detect_encoding
– C. Geek
Oct 3 at 8:05
Could you make sure of the encoding on the server side and on the client side? It is then possible to useodbc_exec($this->link, "ALTER SESSION SET NLS_CHARACTERSET=UTF-8")
– Marc Vanhoomissen
Oct 3 at 11:51
Does not execute
– C. Geek
Oct 7 at 7:23
add a comment
|
What do you use to retrieve data and what points you to the conclusion that it is ASCII?
– Marc Vanhoomissen
Oct 3 at 7:38
I use odbc_fetch_array after odbc_exec, and two indicators show that it is ascii, ????? instead of garbled characters (so it is not a simple utf8 to another encoding method that I can use iconv) and I did mb_detect_encoding
– C. Geek
Oct 3 at 8:05
Could you make sure of the encoding on the server side and on the client side? It is then possible to useodbc_exec($this->link, "ALTER SESSION SET NLS_CHARACTERSET=UTF-8")
– Marc Vanhoomissen
Oct 3 at 11:51
Does not execute
– C. Geek
Oct 7 at 7:23
What do you use to retrieve data and what points you to the conclusion that it is ASCII?
– Marc Vanhoomissen
Oct 3 at 7:38
What do you use to retrieve data and what points you to the conclusion that it is ASCII?
– Marc Vanhoomissen
Oct 3 at 7:38
I use odbc_fetch_array after odbc_exec, and two indicators show that it is ascii, ????? instead of garbled characters (so it is not a simple utf8 to another encoding method that I can use iconv) and I did mb_detect_encoding
– C. Geek
Oct 3 at 8:05
I use odbc_fetch_array after odbc_exec, and two indicators show that it is ascii, ????? instead of garbled characters (so it is not a simple utf8 to another encoding method that I can use iconv) and I did mb_detect_encoding
– C. Geek
Oct 3 at 8:05
Could you make sure of the encoding on the server side and on the client side? It is then possible to use
odbc_exec($this->link, "ALTER SESSION SET NLS_CHARACTERSET=UTF-8")
– Marc Vanhoomissen
Oct 3 at 11:51
Could you make sure of the encoding on the server side and on the client side? It is then possible to use
odbc_exec($this->link, "ALTER SESSION SET NLS_CHARACTERSET=UTF-8")
– Marc Vanhoomissen
Oct 3 at 11:51
Does not execute
– C. Geek
Oct 7 at 7:23
Does not execute
– C. Geek
Oct 7 at 7:23
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1177297%2funixodbc-reads-asciiansi-although-it-is-compiled-with-iconv-enabled%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1177297%2funixodbc-reads-asciiansi-although-it-is-compiled-with-iconv-enabled%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What do you use to retrieve data and what points you to the conclusion that it is ASCII?
– Marc Vanhoomissen
Oct 3 at 7:38
I use odbc_fetch_array after odbc_exec, and two indicators show that it is ascii, ????? instead of garbled characters (so it is not a simple utf8 to another encoding method that I can use iconv) and I did mb_detect_encoding
– C. Geek
Oct 3 at 8:05
Could you make sure of the encoding on the server side and on the client side? It is then possible to use
odbc_exec($this->link, "ALTER SESSION SET NLS_CHARACTERSET=UTF-8")
– Marc Vanhoomissen
Oct 3 at 11:51
Does not execute
– C. Geek
Oct 7 at 7:23