(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)
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
add a comment |
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
add a comment |
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
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
common-lisp
edited Mar 8 at 15:48
sds
40.1k1497175
40.1k1497175
asked Mar 8 at 15:17
taketake
174
174
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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")))))
It's work!!!! Thank you!!!!!!!!!!
– take
Mar 9 at 5:54
add a comment |
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
);
);
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%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
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")))))
It's work!!!! Thank you!!!!!!!!!!
– take
Mar 9 at 5:54
add a comment |
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")))))
It's work!!!! Thank you!!!!!!!!!!
– take
Mar 9 at 5:54
add a comment |
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")))))
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")))))
answered Mar 8 at 15:44
sdssds
40.1k1497175
40.1k1497175
It's work!!!! Thank you!!!!!!!!!!
– take
Mar 9 at 5:54
add a comment |
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
add a comment |
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.
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%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
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