Questions tagged [search-path]
124 questions
2
votes
1 answer
PL/pgSQL function name resolution with nested functions
I have two similar schemas in a single database with the same function names.
Each schema is owned by a role that matches the schema name.
I have issues about function name resolution with nested functions.
I was expecting that the outer function…

lessj
- 31
- 3
2
votes
2 answers
Delphi - locating path of a unit which the compiler can not search in its default path
I have downloaded a component that has many packages in it, then I have install all the design time packages and generated all the other dcu files.I have to assign its path in Delphi search path every time I create a new application. Is there a way…

akash_27
- 151
- 1
- 9
1
vote
2 answers
How can I have Python look for files in the location of the program?
I'm having a problem with a program in which I have to load images and pickled objects: my Python software doesn't appear to be looking in the location of the program. I have my program in a folder called "King's Capture," and my images in a folder…

user1048917
- 415
- 1
- 4
- 13
1
vote
1 answer
How to specify PYD dll dependencies search paths at runtime with python
I created a Python PYD extension module which i can import fine with Python 3.9.1 when i copy all the direct and transitive dll dependencies to the same directory where the PYD file lies.
However, whatever i try, i fail at adding the needed search…

ridilculous
- 624
- 3
- 16
1
vote
0 answers
How to see full path value under ellipsis of Xcode Build Settings
could anyone help me how to see full value under Xcode Build Settings .
in may case, it is search paths I could not see all full string, value only shows ... (ellipis)
xcode_build_search_path
When I double click it only shows $(inherited) , I…

Andy Well
- 11
- 1
1
vote
2 answers
Select * from table with NodeJS // ERROR: { error: relation "mytable" does not exist
I get the following error during my SELECT query from PostgreSQL DB
ERROR: { error: relation "free_subnets" does not exist
at Connection.parseE (/home/ec2-user/environment/node_modules/pg/lib/connection.js:604:11)
at Connection.parseMessage…

N P
- 21
- 3
1
vote
1 answer
Is current directory always in the search path of gdb
I noticed that when I use gdb I can use either
$ gdb ./main
or
$ gdb main
Is the current directory guaranteed to be in the search path of gdb?

OrenIshShalom
- 5,974
- 9
- 37
- 87
1
vote
2 answers
How can I add one or more paths to Ansible search path (for files or templates)?
In my case I am mounting my Ansible code inside a Docker container under /ansible/playbook/. Under this directory you will see the roles, inventories
I would like to mount another directory that contains some RPM files.
In Ansible I have this…

Gabriel Petrovay
- 20,476
- 22
- 97
- 168
1
vote
2 answers
viewpathing in postgres (private/individual versions of otherwise globally available tables)
I want to create a test environment where the basic underlying postgres database is overlain with an instance-localized private view, such that all queries from a specific set of processes go through the private view while other (potentially…

jhfrontz
- 1,165
- 4
- 19
- 31
1
vote
2 answers
How can I delay-load a Windows private assembly? Is it possible?
My project is a plug-in (Windows DLL) that is loaded by a host executable not under my control. My DLL wants to load some additional libs. I do this with private assemblies; there's a great answer at how can a Win32 App plugin load its DLL in its…

GaryO
- 5,873
- 1
- 36
- 61
1
vote
1 answer
Function shows error "relation my_table does not exist"
I created a function to generate invoice numbers but when I do:
select get_generated_kodesj()
it shows an error:
relation "transpending_h" does not exist
LINE 19: ...END END END AS "KODETRANSNEW" FROM transpendi...
Here my function…

Agoeng Liu
- 674
- 3
- 10
- 30
1
vote
1 answer
Using connector c++ to access MYSQL database (How to add a path to my standard search directory)
I am relatively new to programming&C++ and just began learning about MYSQL. I have been searching for a couple of days but couldn't find a solution. I usually use Cygwin&VIM&g++ to write, compile and run codes that I write.
My goal is to retrieve…

Min Joon So
- 37
- 5
1
vote
1 answer
How does C# compiler search for libraries during compilation?
A C# program uses .Net framework libraries or third party libraries by using directive in the C# code.
When compiling the program using csc,
how shall we specify the search path for the used libraries?
does the compiler search for the used…
user1224441
1
vote
0 answers
Systemd Required Shared Library Became Blank with File Permission 401
I had been using a Linux system with eMMC storage.
The Linux kernel version is 3.10.
I use Systemd to init the system with a custom built file system.
Very occasionally, the system failed to boot. After investigation, the reason happened to be that,…

Daren Zou
- 31
- 2
1
vote
1 answer
why does the directory octave~1.1 appear in my search path
Why does my octave file paths have the directory name, OCTAVE~1.1 in them when I query octave's search path in the IDE?
An example of a path would be -- C:\Octave\OCTAVE~1.1\lib\octave\site\oct\api-v51\x86_64-w64-mingw32.

Dennis Lawler
- 11
- 1