Questions tagged [search-path]
124 questions
1
vote
2 answers
"Header Search Paths" Vs. "Library Search Paths"
What's the difference between "Header Search Paths" and "Library Search Paths"? When should I add paths to one vs. the other?
I've noticed that when I link my binary with a library, Xcode automatically adds that library's search path to "Library…

ma11hew28
- 121,420
- 116
- 450
- 651
1
vote
1 answer
JNA dlls in buildpath
i use ghost4j in an java webapplication. This lib loads a dll through JNA. now i want to place the dlls in the classpath, because the working dir of this application changes when i run a test, run it on server with eclipse, or just run a main…

wutzebaer
- 14,365
- 19
- 99
- 170
1
vote
1 answer
Circumvent ld lookup
Having installed my toolchain in a different directory than requested by its vendor, I've been running in some smaller issues easily solved by setting the COMPILER_PATH, C_INCLUDE_PATH, CPLUS_INCLUDE_PATH and LIBRARY_PATH variables…

Pascal Kesseli
- 1,620
- 1
- 21
- 37
1
vote
2 answers
How to view current schema search path in a h2 database?
When connecting to an h2 database, the default search path is set to public.
You can alter it with the SET SCHEMA_SEARCH_PATH.
But if you alter it multiple times, at some point how can you view its current content?
I wasn't able to find some kind of…

Stephan
- 41,764
- 65
- 238
- 329
0
votes
1 answer
A* Search, node to be expanded next when evaluation function evaluates the same
Im having trouble understanding which node/state should be expanded next in an A* search tree when the evaluation function (f(n) = g(n) + h(n)) evaluates the same for two nodes.
Example 1
my understanding is that the frontier is stored as a…

Jono Brogan
- 341
- 7
- 19
0
votes
2 answers
fopen() search paths
Is there a way to set a search path for fopen() so that when I just enter the filename, it searches these path(s) for this file?
f=fopen("xxx","r");
I just want xxx not to be in the current directory, and I dont want to change the source code.

Keeto
- 4,074
- 9
- 35
- 58
0
votes
0 answers
Kafka JDBC Source connector not respecting search path
We've setup our postgres source database so that we have all tables that we are interested in, in two schemas. Essentially we have schema1 and schema2, and the tables in these schemas are identical. When we make a deployment/migration we get rid of…

Anton
- 581
- 1
- 5
- 23
0
votes
0 answers
XCode 13, cannot add a search path for .h files
I'm having trouble adding raylib.h to my project in Xcode 13.
The website gives the following instructions:
Make sure Xcode finds raylib.h: Go to
Build Settings > Search Paths
and add raylib header folder (raylib-master/src) to Header Search…

Light Love Peace
- 21
- 3
0
votes
1 answer
How to let VS Code know the path to Non-JDK Classes?
My Java program imports a non JDK class downloaded and placed in the same directory as my Java file. How do I let VS Code know the path to this class so I don't get the red under squiggle for class not resolved error?
Currently when I compile I need…

zmkm
- 117
- 1
- 4
0
votes
1 answer
Access a postgres table using the schema prefix in c#
I'm using postgres in a c# project and i'm trying to make some basic queries such as
qry.CommandText = "select * from LOGIN";
NpgsqlDataReader qryReader = qry.ExecuteReader();
But it says that the table LOGIN does not exist.
I already know that the…

Timothee W
- 149
- 7
0
votes
1 answer
Where does the Go runtime look for plugins?
I want to use the Go plugin facility, and if I call plugin.Open("…") with an absolute path, this works fine. Still, the original docs give the example plugin.Open("plugin_name.so"), thus, it should also work with the simple filename.
However, the…

Torsten Bronger
- 9,899
- 7
- 34
- 41
0
votes
1 answer
How to add specific text and images after the search result page?
The code below is as far as I have gotten so far. The search function works and when clicking on let's say "Google" you will come to a new page specific to "Google".
But I am unsure now how I can add specific text and images to the page. I for…

Time Duinen
- 95
- 1
- 10
0
votes
2 answers
Ruby/Linux Installed gems not loaded
I am setting up an new Ubuntu 18.04 VM and am having problems with my Ruby applications. Ruby is version 2.5.1 (standard with 18.04). Gems are installed with sudo as they are loaded by apps running under several different uids.
They don't find any…

Russell Fulton
- 570
- 4
- 17
0
votes
1 answer
Find a directory in shared library search path : Another solution?
Nine years ago, this question has been asked : Find a directory in shared library search path (Find a directory in shared library search path).
An answer has been given using : opendir() then readdir() then dlopen() ...
Nowadays, is there a simpler…

Stef1611
- 1,978
- 2
- 11
- 30
0
votes
1 answer
Set a variable in Postgres
I want to set search path in a function for which the schema name to set the search path has to be selected from another table. I want to do something like :
set search_path to (select db_schema_name from Schenma_Name_Table where lookup_id =…

ptilloo
- 55
- 1
- 8