1
vote
2answers
32 views
How can I import an Excel spreadsheet on a 64 bit OS using ASP.NET?
I wrote an ASP.NET page that imported data from an Excel spreadsheet without any problems. Then I moved it to the server and found out that it didn't work on a 64 bit OS. After some Googling I found …
1
vote
4answers
80 views
In Python, is the idiom “from Module import ClassName” typical?
Since I prefer small files, I typically place a single "public" class per Python module. I name the module with the same name as the class it contains. So for example, the class ToolSet would be …
0
votes
1answer
17 views
Bulk import from Informix into Oracle
Hi. We need to pull some tables from an Informix SE database, truncate tables on Oracle 10g, and then populate them with the Informix data.
Does a bulk import work? Will data types clash?
I'd like …
1
vote
3answers
79 views
How to refer to the local module in Python?
Let's say we have a module m:
var = None
def get_var():
return var
def set_var(v):
var = v
This will not work as expected, because set_var() will not store v in the module-wide var. It …
3
votes
5answers
105 views
how to reference python package when filename contains a period
I am using django and I have a file named models.admin.py and I want to do the following idea in models.py:
from "models.admin" import *
however, I get a syntax error for having double quotes. But …
1
vote
2answers
50 views
#import command line equivalent
Using Visual Studio with Microsoft's C++ compiler, we have several source files which use the Microsoft-specific '#import' directive to import a type library. For instance:
#import my_type_lib.tlb
…
0
votes
0answers
5 views
Import office documents into one-note
I wrote a utility that would allow a user to right click on a directory in windows explorer, and it would import all png,gif,jpeg and pdf documents in the directory to one note. I'm getting the …
1
vote
4answers
91 views
How can I track python imports
I have cyclical import issues adding some new code to a very large app, and I'm trying to determine which files are the most likely causes for this. It there any way to track which files import which …
0
votes
0answers
10 views
Import process from some other file to sql database in vb.net
I have a excel file format like first some rows shows address of company,after two row shows the column names.some rows data of corresponding column contains sub columns
But want format of excel …
0
votes
1answer
29 views
import twice when run test
i have this code in my tests.py:
from models import *
and in the models.py I have a signal handler and register it with
post_save.connect( post_save_note, sender=Note )
and when i run test with …
0
votes
3answers
55 views
Newbie in .net: how to add a library to project
I'm new in .net and I'm interesting in following.
I've downloaded a library from this.
But I don't know how to import it into my project for using.
How do I do that?
0
votes
2answers
50 views
PostgreSQL: database restore from dump - syntax error
Hi folks,
I'm trying to restore a PostgreSQL database by executing the SQL that pg_dump created, on an empty database.
I'm getting this error:
ERROR: syntax error at or near "\"
LINE 5211: \.
…
0
votes
2answers
25 views
Importing data into Oracle via Web Enterprise Manager with unique constraints
I am not at all familiar with Oracle so bear with me!
I am using version Oracle 10G with the web front end called Enterprise Manager. I have been given some CSV files to import however when I use …
0
votes
1answer
62 views
import from {in,out}side of a packages
Hi there !
I have a project I build on a library I'm building in parallel. The structure is the following :
project/
main.py
MyLibrary/
__init__.py --> empty
Module1.py --> …
1
vote
5answers
47 views
Module import path
I'm unable to test-run a cssparser that I'd like to use.
test.py:
from css.parse import parse
data = """
em {
padding: 2px;
margin: 1em;
border-width: medium;
border-style: …
