(GETENV XXX) is not a Lisp string or pointer The Next CEO of Stack OverflowUsing Vim for Lisp developmentLisp in the real worldWhat's the best way to learn LISP?LET versus LET* in Common LispDifference between `set`, `setq`, and `setf` in Common Lisp?Pointers in Lisp?Please explain some of Paul Graham's points on LispLisp argument pointerCommon Lisp CFFI: pointer to the pointerSurprise printing to string (common lisp)

Is it okay to majorly distort historical facts while writing a fiction story?

Is micro rebar a better way to reinforce concrete than rebar?

Recycling old answers

Running a General Election and the European Elections together

Is a distribution that is normal, but highly skewed considered Gaussian?

Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?

Make solar eclipses exceedingly rare, but still have new moons

I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin

Why is quantifier elimination desirable for a given theory?

RigExpert AA-35 - Interpreting The Information

Why the difference in type-inference over the as-pattern in two similar function definitions?

Bartok - Syncopation (1): Meaning of notes in between Grand Staff

What steps are necessary to read a Modern SSD in Medieval Europe?

What happened in Rome, when the western empire "fell"?

Would a completely good Muggle be able to use a wand?

Why, when going from special to general relativity, do we just replace partial derivatives with covariant derivatives?

Can we say or write : "No, it'sn't"?

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

How to get from Geneva Airport to Metabief?

INSERT to a table from a database to other (same SQL Server) using Dynamic SQL

Solving system of ODEs with extra parameter

Find non-case sensitive string in a mixed list of elements?

What does "Its cash flow is deeply negative" mean?

Do I need to write [sic] when a number is less than 10 but isn't written out?



(GETENV XXX) is not a Lisp string or pointer



The Next CEO of Stack OverflowUsing Vim for Lisp developmentLisp in the real worldWhat's the best way to learn LISP?LET versus LET* in Common LispDifference between `set`, `setq`, and `setf` in Common Lisp?Pointers in Lisp?Please explain some of Paul Graham's points on LispLisp argument pointerCommon Lisp CFFI: pointer to the pointerSurprise printing to string (common lisp)










1















I'm afraid of asking this kind of basic question.



I want to manage database config by ENV, but I get an error.



This is my code:



(defconfig :common
`(:databases ((:maindb :mysql
:database-name (uiop:getenv "DATABASE_NAME")
:host (uiop:getenv "DATABASE_HOST")
:port (uiop:getenv "DATABASE_PORT")
:username (uiop:getenv "DATABASE_USERNAME")
:password (uiop:getenv "DATABASE_PASSWORD")))))


This is sbcl error:



 1(GETENV DATABASE_HOST) is not a Lisp string or pointer.
2 [Condition of type SIMPLE-ERROR]
3
4Restarts:
5 0: [ABORT] abort thread (#<THREAD "hunchentoot-worker-127.0.0.1:57248" RUNNING 10026777C3>)
6
7Backtrace:
8 0: ((:METHOD CFFI:TRANSLATE-TO-FOREIGN (T CFFI::FOREIGN-STRING-TYPE)) (UIOP/OS:GETENV "DATABASE_HOST") #<unused argument>) [fast-method]
9 Locals:
10 CFFI::OBJ = (UIOP/OS:GETENV "DATABASE_HOST")
11 1: (COM.HACKINGHAT.CL-MYSQL-SYSTEM::MYSQL-REAL-CONNECT #.(SB-SYS:INT-SAP #X7FFFE0015E50) (UIOP/OS:GETENV "DATABASE_HOST") (UIOP/OS:GETENV "DATABASE_USERNAME") (UIOP/OS:GETENV "DATABASE_PASSWORD") (UIOP/O..
12 Locals:
13 CLIENT-FLAG = 0
14 DATABASE = (UIOP/OS:GETENV "DATABASE_NAME")
15 HOST = (UIOP/OS:GETENV "DATABASE_HOST")
16 MYSQL = #.(SB-SYS:INT-SAP #X7FFFE0015E50)
17 PASSWORD = (UIOP/OS:GETENV "DATABASE_PASSWORD")
18 PORT = (UIOP/OS:GETENV "DATABASE_PORT")
19 UNIX-SOCKET = #.(SB-SYS:INT-SAP #X00000000)
20 USER = (UIOP/OS:GETENV "DATABASE_USERNAME")
21 2: ((:METHOD COM.HACKINGHAT.CL-MYSQL-SYSTEM::CONNECT-TO-SERVER (COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL)) #<COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL 1008B324F3>) [fast-method]









share|improve this question




























    1















    I'm afraid of asking this kind of basic question.



    I want to manage database config by ENV, but I get an error.



    This is my code:



    (defconfig :common
    `(:databases ((:maindb :mysql
    :database-name (uiop:getenv "DATABASE_NAME")
    :host (uiop:getenv "DATABASE_HOST")
    :port (uiop:getenv "DATABASE_PORT")
    :username (uiop:getenv "DATABASE_USERNAME")
    :password (uiop:getenv "DATABASE_PASSWORD")))))


    This is sbcl error:



     1(GETENV DATABASE_HOST) is not a Lisp string or pointer.
    2 [Condition of type SIMPLE-ERROR]
    3
    4Restarts:
    5 0: [ABORT] abort thread (#<THREAD "hunchentoot-worker-127.0.0.1:57248" RUNNING 10026777C3>)
    6
    7Backtrace:
    8 0: ((:METHOD CFFI:TRANSLATE-TO-FOREIGN (T CFFI::FOREIGN-STRING-TYPE)) (UIOP/OS:GETENV "DATABASE_HOST") #<unused argument>) [fast-method]
    9 Locals:
    10 CFFI::OBJ = (UIOP/OS:GETENV "DATABASE_HOST")
    11 1: (COM.HACKINGHAT.CL-MYSQL-SYSTEM::MYSQL-REAL-CONNECT #.(SB-SYS:INT-SAP #X7FFFE0015E50) (UIOP/OS:GETENV "DATABASE_HOST") (UIOP/OS:GETENV "DATABASE_USERNAME") (UIOP/OS:GETENV "DATABASE_PASSWORD") (UIOP/O..
    12 Locals:
    13 CLIENT-FLAG = 0
    14 DATABASE = (UIOP/OS:GETENV "DATABASE_NAME")
    15 HOST = (UIOP/OS:GETENV "DATABASE_HOST")
    16 MYSQL = #.(SB-SYS:INT-SAP #X7FFFE0015E50)
    17 PASSWORD = (UIOP/OS:GETENV "DATABASE_PASSWORD")
    18 PORT = (UIOP/OS:GETENV "DATABASE_PORT")
    19 UNIX-SOCKET = #.(SB-SYS:INT-SAP #X00000000)
    20 USER = (UIOP/OS:GETENV "DATABASE_USERNAME")
    21 2: ((:METHOD COM.HACKINGHAT.CL-MYSQL-SYSTEM::CONNECT-TO-SERVER (COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL)) #<COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL 1008B324F3>) [fast-method]









    share|improve this question


























      1












      1








      1








      I'm afraid of asking this kind of basic question.



      I want to manage database config by ENV, but I get an error.



      This is my code:



      (defconfig :common
      `(:databases ((:maindb :mysql
      :database-name (uiop:getenv "DATABASE_NAME")
      :host (uiop:getenv "DATABASE_HOST")
      :port (uiop:getenv "DATABASE_PORT")
      :username (uiop:getenv "DATABASE_USERNAME")
      :password (uiop:getenv "DATABASE_PASSWORD")))))


      This is sbcl error:



       1(GETENV DATABASE_HOST) is not a Lisp string or pointer.
      2 [Condition of type SIMPLE-ERROR]
      3
      4Restarts:
      5 0: [ABORT] abort thread (#<THREAD "hunchentoot-worker-127.0.0.1:57248" RUNNING 10026777C3>)
      6
      7Backtrace:
      8 0: ((:METHOD CFFI:TRANSLATE-TO-FOREIGN (T CFFI::FOREIGN-STRING-TYPE)) (UIOP/OS:GETENV "DATABASE_HOST") #<unused argument>) [fast-method]
      9 Locals:
      10 CFFI::OBJ = (UIOP/OS:GETENV "DATABASE_HOST")
      11 1: (COM.HACKINGHAT.CL-MYSQL-SYSTEM::MYSQL-REAL-CONNECT #.(SB-SYS:INT-SAP #X7FFFE0015E50) (UIOP/OS:GETENV "DATABASE_HOST") (UIOP/OS:GETENV "DATABASE_USERNAME") (UIOP/OS:GETENV "DATABASE_PASSWORD") (UIOP/O..
      12 Locals:
      13 CLIENT-FLAG = 0
      14 DATABASE = (UIOP/OS:GETENV "DATABASE_NAME")
      15 HOST = (UIOP/OS:GETENV "DATABASE_HOST")
      16 MYSQL = #.(SB-SYS:INT-SAP #X7FFFE0015E50)
      17 PASSWORD = (UIOP/OS:GETENV "DATABASE_PASSWORD")
      18 PORT = (UIOP/OS:GETENV "DATABASE_PORT")
      19 UNIX-SOCKET = #.(SB-SYS:INT-SAP #X00000000)
      20 USER = (UIOP/OS:GETENV "DATABASE_USERNAME")
      21 2: ((:METHOD COM.HACKINGHAT.CL-MYSQL-SYSTEM::CONNECT-TO-SERVER (COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL)) #<COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL 1008B324F3>) [fast-method]









      share|improve this question
















      I'm afraid of asking this kind of basic question.



      I want to manage database config by ENV, but I get an error.



      This is my code:



      (defconfig :common
      `(:databases ((:maindb :mysql
      :database-name (uiop:getenv "DATABASE_NAME")
      :host (uiop:getenv "DATABASE_HOST")
      :port (uiop:getenv "DATABASE_PORT")
      :username (uiop:getenv "DATABASE_USERNAME")
      :password (uiop:getenv "DATABASE_PASSWORD")))))


      This is sbcl error:



       1(GETENV DATABASE_HOST) is not a Lisp string or pointer.
      2 [Condition of type SIMPLE-ERROR]
      3
      4Restarts:
      5 0: [ABORT] abort thread (#<THREAD "hunchentoot-worker-127.0.0.1:57248" RUNNING 10026777C3>)
      6
      7Backtrace:
      8 0: ((:METHOD CFFI:TRANSLATE-TO-FOREIGN (T CFFI::FOREIGN-STRING-TYPE)) (UIOP/OS:GETENV "DATABASE_HOST") #<unused argument>) [fast-method]
      9 Locals:
      10 CFFI::OBJ = (UIOP/OS:GETENV "DATABASE_HOST")
      11 1: (COM.HACKINGHAT.CL-MYSQL-SYSTEM::MYSQL-REAL-CONNECT #.(SB-SYS:INT-SAP #X7FFFE0015E50) (UIOP/OS:GETENV "DATABASE_HOST") (UIOP/OS:GETENV "DATABASE_USERNAME") (UIOP/OS:GETENV "DATABASE_PASSWORD") (UIOP/O..
      12 Locals:
      13 CLIENT-FLAG = 0
      14 DATABASE = (UIOP/OS:GETENV "DATABASE_NAME")
      15 HOST = (UIOP/OS:GETENV "DATABASE_HOST")
      16 MYSQL = #.(SB-SYS:INT-SAP #X7FFFE0015E50)
      17 PASSWORD = (UIOP/OS:GETENV "DATABASE_PASSWORD")
      18 PORT = (UIOP/OS:GETENV "DATABASE_PORT")
      19 UNIX-SOCKET = #.(SB-SYS:INT-SAP #X00000000)
      20 USER = (UIOP/OS:GETENV "DATABASE_USERNAME")
      21 2: ((:METHOD COM.HACKINGHAT.CL-MYSQL-SYSTEM::CONNECT-TO-SERVER (COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL)) #<COM.HACKINGHAT.CL-MYSQL-SYSTEM:CONNECTION-POOL 1008B324F3>) [fast-method]






      common-lisp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 15:48









      sds

      40.1k1497175




      40.1k1497175










      asked Mar 8 at 15:17









      taketake

      174




      174






















          1 Answer
          1






          active

          oldest

          votes


















          6














          You are missing commas before the parts that are to be evaluated:



          (defconfig :common
          `(:databases ((:maindb :mysql
          :database-name ,(uiop:getenv "DATABASE_NAME")
          :host ,(uiop:getenv "DATABASE_HOST")
          :port ,(uiop:getenv "DATABASE_PORT")
          :username ,(uiop:getenv "DATABASE_USERNAME")
          :password ,(uiop:getenv "DATABASE_PASSWORD")))))





          share|improve this answer























          • It's work!!!! Thank you!!!!!!!!!!

            – take
            Mar 9 at 5:54











          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%2f55066131%2fgetenv-xxx-is-not-a-lisp-string-or-pointer%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









          6














          You are missing commas before the parts that are to be evaluated:



          (defconfig :common
          `(:databases ((:maindb :mysql
          :database-name ,(uiop:getenv "DATABASE_NAME")
          :host ,(uiop:getenv "DATABASE_HOST")
          :port ,(uiop:getenv "DATABASE_PORT")
          :username ,(uiop:getenv "DATABASE_USERNAME")
          :password ,(uiop:getenv "DATABASE_PASSWORD")))))





          share|improve this answer























          • It's work!!!! Thank you!!!!!!!!!!

            – take
            Mar 9 at 5:54















          6














          You are missing commas before the parts that are to be evaluated:



          (defconfig :common
          `(:databases ((:maindb :mysql
          :database-name ,(uiop:getenv "DATABASE_NAME")
          :host ,(uiop:getenv "DATABASE_HOST")
          :port ,(uiop:getenv "DATABASE_PORT")
          :username ,(uiop:getenv "DATABASE_USERNAME")
          :password ,(uiop:getenv "DATABASE_PASSWORD")))))





          share|improve this answer























          • It's work!!!! Thank you!!!!!!!!!!

            – take
            Mar 9 at 5:54













          6












          6








          6







          You are missing commas before the parts that are to be evaluated:



          (defconfig :common
          `(:databases ((:maindb :mysql
          :database-name ,(uiop:getenv "DATABASE_NAME")
          :host ,(uiop:getenv "DATABASE_HOST")
          :port ,(uiop:getenv "DATABASE_PORT")
          :username ,(uiop:getenv "DATABASE_USERNAME")
          :password ,(uiop:getenv "DATABASE_PASSWORD")))))





          share|improve this answer













          You are missing commas before the parts that are to be evaluated:



          (defconfig :common
          `(:databases ((:maindb :mysql
          :database-name ,(uiop:getenv "DATABASE_NAME")
          :host ,(uiop:getenv "DATABASE_HOST")
          :port ,(uiop:getenv "DATABASE_PORT")
          :username ,(uiop:getenv "DATABASE_USERNAME")
          :password ,(uiop:getenv "DATABASE_PASSWORD")))))






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 8 at 15:44









          sdssds

          40.1k1497175




          40.1k1497175












          • It's work!!!! Thank you!!!!!!!!!!

            – take
            Mar 9 at 5:54

















          • It's work!!!! Thank you!!!!!!!!!!

            – take
            Mar 9 at 5:54
















          It's work!!!! Thank you!!!!!!!!!!

          – take
          Mar 9 at 5:54





          It's work!!!! Thank you!!!!!!!!!!

          – take
          Mar 9 at 5:54



















          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55066131%2fgetenv-xxx-is-not-a-lisp-string-or-pointer%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 get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229