pyhdb encoding issue on Python










0














I am trying to use Python to connect to the HANA Cloud. I can access to the database using the code below, but after I execute the code ab = cursor.fetchall(). It got the encoding error. Anyone know how to solve this issue and give me some guide how to change the coding? Much appreciate!



import pyhdb
import pandas as pd
import numpy as np

connection = pyhdb.connect('localhost', 3333, 'User', 'PWD')
cursor = connection.cursor()
cursor.execute("""
SELECT * FROM ggggg.LIFESTYLES_SURVEY_2017 where
DIETARY_SHOP_VEGETARIAN = 'Vegetarian'
UNION
SELECT TOP 3000 * FROM CRM_AGILE.LIFESTYLES_SURVEY_2017 where
DIETARY_SHOP_VEGETARIAN != 'Vegetarian'
ORDER BY RAND()
""")

ab = cursor.fetchall()


enter image description here










share|improve this question




























    0














    I am trying to use Python to connect to the HANA Cloud. I can access to the database using the code below, but after I execute the code ab = cursor.fetchall(). It got the encoding error. Anyone know how to solve this issue and give me some guide how to change the coding? Much appreciate!



    import pyhdb
    import pandas as pd
    import numpy as np

    connection = pyhdb.connect('localhost', 3333, 'User', 'PWD')
    cursor = connection.cursor()
    cursor.execute("""
    SELECT * FROM ggggg.LIFESTYLES_SURVEY_2017 where
    DIETARY_SHOP_VEGETARIAN = 'Vegetarian'
    UNION
    SELECT TOP 3000 * FROM CRM_AGILE.LIFESTYLES_SURVEY_2017 where
    DIETARY_SHOP_VEGETARIAN != 'Vegetarian'
    ORDER BY RAND()
    """)

    ab = cursor.fetchall()


    enter image description here










    share|improve this question


























      0












      0








      0







      I am trying to use Python to connect to the HANA Cloud. I can access to the database using the code below, but after I execute the code ab = cursor.fetchall(). It got the encoding error. Anyone know how to solve this issue and give me some guide how to change the coding? Much appreciate!



      import pyhdb
      import pandas as pd
      import numpy as np

      connection = pyhdb.connect('localhost', 3333, 'User', 'PWD')
      cursor = connection.cursor()
      cursor.execute("""
      SELECT * FROM ggggg.LIFESTYLES_SURVEY_2017 where
      DIETARY_SHOP_VEGETARIAN = 'Vegetarian'
      UNION
      SELECT TOP 3000 * FROM CRM_AGILE.LIFESTYLES_SURVEY_2017 where
      DIETARY_SHOP_VEGETARIAN != 'Vegetarian'
      ORDER BY RAND()
      """)

      ab = cursor.fetchall()


      enter image description here










      share|improve this question















      I am trying to use Python to connect to the HANA Cloud. I can access to the database using the code below, but after I execute the code ab = cursor.fetchall(). It got the encoding error. Anyone know how to solve this issue and give me some guide how to change the coding? Much appreciate!



      import pyhdb
      import pandas as pd
      import numpy as np

      connection = pyhdb.connect('localhost', 3333, 'User', 'PWD')
      cursor = connection.cursor()
      cursor.execute("""
      SELECT * FROM ggggg.LIFESTYLES_SURVEY_2017 where
      DIETARY_SHOP_VEGETARIAN = 'Vegetarian'
      UNION
      SELECT TOP 3000 * FROM CRM_AGILE.LIFESTYLES_SURVEY_2017 where
      DIETARY_SHOP_VEGETARIAN != 'Vegetarian'
      ORDER BY RAND()
      """)

      ab = cursor.fetchall()


      enter image description here







      python encoding connection






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 12 '18 at 19:02









      Aqueous Carlos

      289213




      289213










      asked Nov 12 '18 at 2:26









      Nate Liu

      237




      237






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You are messing with encoding in python somehow.
          To help you more, we need, and it's important, your python version (show when you open a python terminal)



          Did you try running your execute(***) code without line break ? (one-line)






          share|improve this answer




















          • Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
            – Nate Liu
            Nov 12 '18 at 21:02










          • The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
            – Nate Liu
            Nov 12 '18 at 21:10










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          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/3.0/"u003ecc by-sa 3.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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53255270%2fpyhdb-encoding-issue-on-python%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You are messing with encoding in python somehow.
          To help you more, we need, and it's important, your python version (show when you open a python terminal)



          Did you try running your execute(***) code without line break ? (one-line)






          share|improve this answer




















          • Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
            – Nate Liu
            Nov 12 '18 at 21:02










          • The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
            – Nate Liu
            Nov 12 '18 at 21:10















          0














          You are messing with encoding in python somehow.
          To help you more, we need, and it's important, your python version (show when you open a python terminal)



          Did you try running your execute(***) code without line break ? (one-line)






          share|improve this answer




















          • Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
            – Nate Liu
            Nov 12 '18 at 21:02










          • The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
            – Nate Liu
            Nov 12 '18 at 21:10













          0












          0








          0






          You are messing with encoding in python somehow.
          To help you more, we need, and it's important, your python version (show when you open a python terminal)



          Did you try running your execute(***) code without line break ? (one-line)






          share|improve this answer












          You are messing with encoding in python somehow.
          To help you more, we need, and it's important, your python version (show when you open a python terminal)



          Did you try running your execute(***) code without line break ? (one-line)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 12 '18 at 20:37









          Skapin

          665




          665











          • Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
            – Nate Liu
            Nov 12 '18 at 21:02










          • The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
            – Nate Liu
            Nov 12 '18 at 21:10
















          • Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
            – Nate Liu
            Nov 12 '18 at 21:02










          • The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
            – Nate Liu
            Nov 12 '18 at 21:10















          Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
          – Nate Liu
          Nov 12 '18 at 21:02




          Hi Skapin, thanks for your response. I am using Python 3.6.2. "cursor.execute" I can execute this code successfully (I have tried one-line and without line both execute successfully). Do you know how to encoding in Pyhdb?
          – Nate Liu
          Nov 12 '18 at 21:02












          The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
          – Nate Liu
          Nov 12 '18 at 21:10




          The issue I think probably is about my dataset has special symbol like emoji or character. Would you know how to encoding in pyhdb? I search a lot but can't find anything about pyhdb encoding.
          – Nate Liu
          Nov 12 '18 at 21:10

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • 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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53255270%2fpyhdb-encoding-issue-on-python%23new-answer', 'question_page');

          );

          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







          Popular posts from this blog

          How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

          Syphilis

          Darth Vader #20