A number of languages have With statements. The Python with statement creates a new context, with associated context manager. When the context (a code block) is exited again, the context manager is notified.
0
votes
1answer
41 views
With statement in python is returning None object even though __init__ method works
For a DB class with the following init method:
class DB:
def __init__(self, dbprops):
self.dbprops = dbprops
self.conn = self.get_connection(self.dbprops)
debug("self.conn ...
0
votes
2answers
22 views
oracle plsql WITH statement combined with INSERT
During migration of postgresql 9 functions faced the following issue:
in Oracle you can use WITH just in complex select statements. Meanwhile in postgres (and MS SQL 2008 too) you can use WITH and ...
0
votes
2answers
30 views
with statement work on class
{class foo(object):
def __enter__ (self):
print("Enter")
def __exit__(self,type,value,traceback):
print("Exit")
def method(self):
print("Method")
with foo() as ...
0
votes
2answers
52 views
postgresql WITH statement add empty records to report
I'm writing a request for postgresql database (9.2) to describe the structure of all schema tables.
To make the result of the request more readable, I want to add an epmty record after rows, ...
0
votes
1answer
32 views
With-Statement and Threading :Making function execute before run
This question is a follow up from following question:With statement and python threading
I have been experimenting with python threading api.
I have this code which works for what I want to achieve ...
0
votes
2answers
22 views
oracle sql developer: identify fields in table that have changed over time
Oracle version:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
My table structure:
Field 1: Name
Field 2: Year
Field 2: Sales_Rev
Field 3: Rep_Cat
There are three types of ...
0
votes
1answer
50 views
With statement and python threading
I am a noob in python trying to understand the threading module.
I am using python 2.7.One of the motivation for with_statement in python was given to be code pattern of
with threading.Lock():
...
1
vote
0answers
21 views
SQL, getting the correct conversion rate based on the date
Hello and thank you for your help I am creating a View in SQL 2008, I need to convert amounts into a different currency, I also need to make sure it is using the appropriate currency based on date. ...
0
votes
0answers
18 views
Different order in a data from a select using OFFSET FETCH server 2012 combined with a WITH (Common table expression)
I have a select that return some IDs with an specific sort and add there the Row_Number().
The problem is if I declared the variable used on the offset is different to if I hard code it on the query.
...
-2
votes
1answer
39 views
Why can't the with statement have an except clause [closed]
Trying to understand exception handling and the with statement, I'm curious if anyone understand why the design of python is such that the following code (following the "naive" question in [1]) is ...
1
vote
1answer
49 views
knockout foreach nested in a with
I want to bind a simple structure with ko but I am getting an exception during binding.
My VM looks like this:
function VM() {
this["longNameObjId1"] = new Object();
...
1
vote
1answer
150 views
“with” macro in C
I was looking for a macro that will resemble the with-construct.
The usage should be something like:
with (lock(&x), unlock(&x)) {
...
}
It might be useful for some other purposes.
I ...
0
votes
2answers
20 views
Within a With <obj> / End With block, is there a keyword to access <obj> directly?
In VB.NET, just wondering if there is a kind of "this" keyword, with which one can access the object being used with in With <obj> ... End With block. Eg:
With myObj
.thisMethod()
...
3
votes
2answers
56 views
Is it good form to iterate through a file using only a for loop? [duplicate]
I've come across some code that iterates through lines in a file like so:
for line in open(filename, 'r'):
do_all_the_things()
Is that a more Pythonic version of something like:
with ...
2
votes
1answer
42 views
Alternative to contextlib.nested with variable number of context managers
We have code that invokes a variable number of context managers depending on runtime parameters:
from contextlib import nested, contextmanager
@contextmanager
def my_context(arg):
...
0
votes
2answers
60 views
SQL WITH in WITH
I want to write a with in with SQL query.
Go some error. Please help:
DECLARE @Start AS DATETIME;
DECLARE @End AS DATETIME;
SET @Start = '2013-04-09';
SET @End = '2013-04-11';
with ...
0
votes
1answer
44 views
CTE looping query
First I'll explain you the situation.
I want to transfer data from one table(View_Solidnet_Training) to another(OBJ_Availability).
There is one problem: In the view there is a Start- and EndDate! In ...
0
votes
1answer
80 views
Optimise Autofilter Visible Dropdown Loop
I'm trying to optimise the code below;
With Range("A2:IW2")
For i = 1 To 8
.AutoFilter Field:=i, VisibleDropDown:=True
Next i
For i = 9 To 253
.AutoFilter Field:=i, ...
1
vote
3answers
115 views
With… End With vs Using in VB.NET
I just found out that like C#, VB.NET also has the using keyword.
Until now I thought it didn't have it (stupid of me, I know...) and did stuff like this instead:
With New ...
0
votes
1answer
62 views
Adapting With/CTE statement
Using SQL Server 2012.... This code works as a standalone script but I need the value returned within a iif(...) nested in a Case...when as part of a larger script:
with GroupedValues (Value, ...
10
votes
2answers
296 views
How to use a python context manager inside a generator
In python, should with-statements be used inside a generator? To be clear, I am not asking about using a decorator to create a context manager from a generator function. I am asking whether there is ...
3
votes
1answer
41 views
Re-assign exception from within a python __exit__ block
From within an __exit__ block in a custom cursor class I want to catch an exception so I can in turn throw a more specific exception. What is the proper way to do this?
class Cursor:
def ...
0
votes
0answers
61 views
with as and premature file closure
I have a python function that contains the following code:
with open(modelfilepath, "rb") as modelfile, open(vcffilepath, "rb") as vcffile:
for row in gtf_getrow(modelfile):
print row
...
2
votes
2answers
95 views
Is there a way to debug VB.NET With clause in Visual Studio?
Sometimes you don't really care about the name of a variable, because it does not go outside of your sub's scope. In fact, specifying the name would add an extra line of code. Also now you have this ...
0
votes
2answers
240 views
Python: with open inside try - except block, too many files open?
Quite simply, I am cycling through all sub folders in a specific location, and collecting a few numbers from three different files.
def GrepData():
import glob as glob
import os as os
...
0
votes
1answer
72 views
DELETE rows with foreign constraints without using “on cascade”
I am a newb to SQL since I can normally get away with simple queries/migrations without digging into it, however I have a more complex one that doesn't involve a join and I am wondering how I delete ...
0
votes
1answer
84 views
Problems doing update with Join on SQL Server 2012
I am not very experienced with SQL but I have put together a query that I though should update two prices in one table (to add on 20% tax) using the description in another table by joining the tables, ...
3
votes
2answers
829 views
Python with…as
I'm curious if it is considered safe or good practice to depend on python's with...as statement. For example when opening a file:
with open("myfile","w") as myFile:
#do something
So in this ...
0
votes
2answers
151 views
Using two With statements
First, I was haveing combobox1 fill combobox2 during the onselect. I started the long way see below.
procedure TFGetZoneDept.ComboBox1Select(Sender: TObject);
begin
Combobox2.Clear;
with ...
0
votes
1answer
66 views
Does WITH statement execute once per query or once per row?
My understanding of the WITH statement (CTE) is that it executes once per query. With a query like this:
WITH Query1 AS ( ... )
SELECT *
FROM
SomeTable t1
LEFT JOIN Query1 t2 ON ...
If this ...
0
votes
0answers
41 views
Oracle WITH clause in linq to entities
Please can any one tell me how to use WITH clause in LINQ to entities ??
I would like any other way that can helps you to use temporary table.
Just for your knowladge, i'am already using LinqKit, ...
3
votes
1answer
30 views
For class using the `with` keyword in python, can I have it __repr__ (print) itself?
I'm trying to create an object that plays nicely with the with keyword in Python. I understand that you have to create __enter__ and __exit__ methods, but I'm not quite sure how manipulate the object. ...
0
votes
2answers
87 views
Using result of a SQL WITH statement more than once in a stored procedure
I have the SQL stored procedure below:
ALTER PROCEDURE [dbo].[sp_getpaginatedusersbyglobalfilter]
@globalFilter varchar(max)
, @pageSize int
, @page int
, @totalRecords int output
...
1
vote
2answers
102 views
In R, how to make the variables inside a function available to the lower level function inside this function?(with, attach, environment)
Update 2
@G. Grothendieck posted two approaches. The second one is changing the function environment inside a function. This solves my problem of too many coding replicates. I am not sure if this is a ...
-1
votes
2answers
72 views
What is with statement in php? [closed]
I just found this in a laravel bundle that I just installed, and really have no idea what with() is... as it isn't declared any where
public static function of($query)
{
$ins = with(new static); ...
6
votes
1answer
44 views
How to use contextmanagers for instance variables
How would I use a Contextmanager for instance variables? E.g.
Let's assume I've got some Connection class, that must be closed on destruction. If I were to implement it as a ContextManager I could do.
...
3
votes
1answer
46 views
Referring to original object in With statement
I know that I can use a With statement to make repeated references to a single object:
With myObj
.StringProperty = ""
.BooleanProperty = False
End With
However, what I want to know is: is ...
1
vote
1answer
156 views
T-SQL passing a table name dynamically inside WITH statement
I have the following code in T-SQL that reads table names from a cursor.
But I have problem with the scoping table name variable inside the WITH statement.
I can run this code when I explicitly set ...
1
vote
2answers
91 views
python 'with' statement and its use in a class
I have a TestCase which uses sockets for testing purposes. As you should always close a socket even in the case of some error, I created a context-manager class abstracting a socket.
A test fixture ...
1
vote
6answers
108 views
Is there a Java equivalent to Javascript's with statement?
Is there a similar way to declare a with-statement in Java (as in Javascript), or are there structural reasons why this would not be possible?
For example, this Javascript:
with(obj)
{
...
0
votes
2answers
485 views
“WITH” SQL statement within HP Quality Center - Invalid Statements - Oracle DB
I am receiving an error when attempting to run my SQL query within HP Quality Center. The message is "Quality Center cannot run the query because it contains invalid statements. The database is ...
0
votes
0answers
75 views
Python: Opening multiple files using 'with open' [duplicate]
Possible Duplicate:
Python: open multiple files using “with open”?
Does, With open() not works with python 2.6
I have seen other answers to help me with this.
But I can't seem to get any ...
1
vote
3answers
118 views
Calling multiple functions from a class in Python without repeating the class name every time
I feel this is a very simple question but I can't find to seem a proper answer. Basically I have a list of functions call from a class named simulation:
simulation.addGroup("teapotarmy")
...
3
votes
3answers
111 views
PHP equivalent to Javascript “with” scope statement
Porting some code from Javascript i'm having this incovenience. For example:
In javascript we can produce this code.
var a, x, y;
var r = 10;
with (Math) {
a = PI * r * r;
x = r * cos(PI);
y = ...
4
votes
1answer
83 views
Psycopg2: making a query in python using with … as
Which is the best pattern to make a query with psycopg2?
This one:
# get_connection is a function that returns a connection to the db.
with get_connection() as conn:
with conn.cursor() as ...
1
vote
5answers
139 views
Currying using python with-statement?
I am not sure if this is 'good python practice', but would it be possible to, say, define a custom File-object that could do something like:
myfile = myopen('myfile.txt')
with myfile:
...
2
votes
4answers
331 views
Catching exception in context manager __enter__()
Is it possible to ensure the __exit__() method is called even if there is an exception in __enter__()?
>>> class TstContx(object):
... def __enter__(self):
... raise ...
1
vote
2answers
73 views
Looping over resource in python
Is there a shorter way to do the following for-with combination:
for resource in gen_resources():
with resource:
DoWork1(resource)
.
.
DoWorkN(resource)
If ...
0
votes
3answers
119 views
Equivalent of VBA With statement in Java
I am currently making my method call in the following way:
InstrumentsInfo instrumentsInfo = new InstrumentsInfo();
String shortInstruName = "EURUSD"
TrackInstruments trackInstruments = new ...
1
vote
3answers
230 views
If I create an object in a “with” clause, do I still need to free it?
In my source I see and use often a construction like:
with TSQLDataSet.Create(nil) do try
//Dosomething, get a result from a query.
finally
Free;
end;
But I also often see the construction: ...




