Top "Call" questions

Do not use this ambiguous tag.

Running bash script from within python

I have a problem with the following code: callBash.py: import subprocess print "start" subprocess.call("sleep.sh") print "end" …

python bash call
How to call a mysql stored procedure, with arguments, from command line?

How can I call a stored procedure from command line? I have a procedure: CREATE DEFINER=`root`@`localhost` PROCEDURE `insertEvent`(…

mysql command-line call procedure
What does it mean to "call" a function in Python?

What does "call" mean and do? How would you "call" a function in Python?

python call function
Passing variables, creating instances, self, The mechanics and usage of classes: need explanation

I just rewrote a working program into functions in a class and everything messed up. First, in the __init__ section …

python class call parameter-passing instance-variables
how to create and call scalar function in sql server 2008

I have created a Scalar Functions, it was created successfully, but when I call the function using select statement, it …

sql-server-2008 function call scalar
Android Call an method from another class

I know that this Question is repeated but I can't find the answer in Internet. I want to call a …

java android class android-activity call
Why can't I call a public method in another class?

I have got these two classes interacting and I am trying to call four different classes from class one for …

c# methods call
VBA module that runs other modules

I'm programming in Microsoft VBA. At first I need to generate a QueryTable with the help of a macro (I've …

vba excel call
Python __call__ special method practical example

I know that __call__ method in a class is triggered when the instance of a class is called. However, I …

python methods call magic-methods
How to pass a callback as a parameter into another function

I'm new to ajax and callback functions, please forgive me if i get the concepts all wrong. Problem: Could i …

javascript ajax callback call