1
vote
2answers
43 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
…
1
vote
4answers
85 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
3answers
54 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
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 …
3
votes
0answers
145 views
Importing big(ish) CSV text files into R
I've seen little bit of discussion as to the best way to import 2GB or more of text data into an R data frame. Yesterday I wrote a blog post about using sqldf() to import the data into sqlite as a …
0
votes
2answers
36 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: \.
…
9
votes
4answers
255 views
Quickly reading very large tables as dataframes in R
Hello,
I have very large tables that I would like to load as a dataframes in R. read.table() has a lot of convenient features, but it seems like there is a lot of logic in the implementation that …
0
votes
1answer
50 views
How do i use TLBIMP.EXE ?
I've found it in my visual studio folder, but when i open it it simply loads and closes instantly. is that the right way to reach to it's functionalities ?
1
vote
5answers
44 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: …
0
votes
2answers
20 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 …
1
vote
1answer
35 views
gwt> importing a sample project
I'm just barely after 2 hours of trying to force it to work and looking for answers online.
How in the world do you import a sample gwt application into your eclipse and make it run?
by the way, I …
0
votes
0answers
49 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
4answers
72 views
Upload 95Gb csv file into MySQL MyISAM table via Load data infile: CSV engine an alternative?
Hi guys,
I'm trying to upload a 95Gb csv file into a MySQL database (MySQL 5.1.36) via the following command:
CREATE TABLE MOD13Q1 (
rid INT UNSIGNED NOT NULL AUTO_INCREMENT,
gid MEDIUMINT(6) …
1
vote
2answers
81 views
Creating the SVN properly [closed]
I am a newbie in the world of SVN 'administration'. I have used SVN for quite a while now; not as an administrator though.
This is what I have done so far for setting up the SVN repository for a …
6
votes
3answers
164 views
Is `import module` better coding style than `from module import function`?
Let from module import function be called the FMIF coding style.
Let import module be called the IM coding style.
Let from package import module be called the FPIM coding style.
Why is IM+FPIM …
