Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
6answers
1k views

'import module' or 'from module import'

I've tried to find a comprehensive guide on whether it is best to use 'import module' or 'from module import'. I've just started with Python, with the intention for developing web applications with ...
12
votes
5answers
7k views

Problem importing Android project archives into Eclipse

My apologies if this is a stupid newbie question... I'm using Eclipse (Helios release) and have the Android SDK all configured as per the developer.android.com recommendations. I can create and run ...
8
votes
6answers
3k views

Loading all modules in a folder in Python

Could someone provide me with a good way of importing a whole directory of modules? I have a structure like this: /Foo bar.py spam.py eggs.py I tried just converting it to a package by ...
5
votes
2answers
40 views

How can I import into a join table in a set based statement?

I am importing data from a flat file into a normalized table structure. I am currently using cursors to do inserts into related tables so I have the primary keys to insert into the join table. Can I ...
5
votes
6answers
202 views

Why is Python running my module when I import it, and how do I stop it?

I have a Python program I'm building that can be run in either of 2 ways: the first is to call "python main.py" which prompts the user for input in a friendly manner and then runs the user input ...
5
votes
2answers
1k views

Trying to import a custom UITableViewCell keeps giving me a file not found lexical preprocessor error in Objective-C

Trying to import a custom UITableViewCell and it keeps giving me a file not found lexical preprocessor error. I can't figure it out. ProductCell.h #import <UIKit/UIKit.h> @interface ...
4
votes
2answers
235 views

How importing works. Why imported modules not inheriting other imported modules

I just "thought" I understood how importing and modules work but obviously I need more schooling. Here is an example program (just a test case of somerthing I'm doing that is much bigger in scope and ...
3
votes
2answers
73 views

loading clojure-contrib

I'm new to the whole JVM thing, and trying to play with clojure. I'm attempting to load clojure-contrib and failing: # in bash $ java -cp /path/to/clojure.jar:/path/to/contrib.jar clojure.main # in ...
3
votes
4answers
117 views

java, is there a way we can import a class under another name

is there a way we can import a class under another name? Like if i have a class called javax.C and another class called java.C i can import javax.C under the name C1 and import java.C under the name ...
3
votes
4answers
1k views

How do I have to import products in Magento using a direct connection to the database

I have about 50.000 of records to import in a Magento store. What I have already tested: The file is about 50 MB. Splitted files API Magento Classes Splitting the file doesn't improve the speed of ...
3
votes
1answer
454 views

importing content into drupal

I have a wordpress site with 5k post and each post has average 25 comments. so 125k total nodes have to be added. I need import those posts and comments into drupal 6 . I have written a script to ...
3
votes
7answers
261 views

Importing In Python

Is it possible to import modules based on location? (eg. do all modules i import have to be in /usr/lib64/python2.5/ or a similar dir?) I'd like to import a module that's local to the current ...
2
votes
1answer
54 views

exporting and importing data from one user installation to another

I want to give users the functionality of export data from one WordPress plugin installation from one site to another. A "WordPress plugin" doesn't make the difference, I'm interesting in the ...
2
votes
3answers
391 views

Importing Excel Table into a MS SQL Table

I have software for STOCK and SALES that can give me an Excel price list, I wanna write a small web app that will enable users to check prices, I don't have any access to that software's database, so ...
2
votes
5answers
224 views

how do i edit a running python program?

scenario: a modular app that loads .py modules on the fly as it works. programmer (me) wishes to edit the code of a module and then re-load it into the program without halting execution. can this be ...
2
votes
2answers
58 views

Efficient data importing?

We work with a lot of real estate, and while rearchitecting how the data is imported, I came across an interesting issue. Firstly, the way our system works (loosely speaking) is we run a Coldfusion ...
1
vote
1answer
67 views

Importing numerical vectors and strings into a MATLAB matrix

I have the following data structure (stored as CSV): Sub Cond Pic Vals s101 A pic1 [1,3,5,1,-2,5] s101 A pic2 [1,-2,5,0,2,1] s101 B pic1 [2,4,7,0,1,-3] s101 B pic2 [3,-1,1,1,6,1] s102 A ...
1
vote
4answers
71 views

How do I import python code from a file?

I was hesitant about asking this because I've seen similar questions with overly complicated answers. The question I actually want answered to was closed on account of being "vague" and "not a real ...
1
vote
1answer
36 views

Importing thousands of text files into database

I am pretty new to databases and need help. I have n (large) files, each file contains m (very large) text file (numeric data). What is the best way to import those files into a mysql database ...
1
vote
3answers
65 views

Best Way to Import Other Modules in Python when PYTHONPATH Cannot Be Modified?

I'm coding my first project in python, and I'm unsure as to how to handle importing. I'm working on computers at my university and cannot modify the PYTHONPATH variable. I am also working on this ...
1
vote
2answers
41 views

Importing several files and indexing them

I have n files, file_1, file_2,..., file_n that I want to import and work with. So I import the files like this files <- list.files(pattern=".txt$") for(i in files) { x <- read.table(i, ...
1
vote
3answers
76 views

SQL import only different records

So sorry if this has been answered before, but I cannot find an answer anywhere. I have a SQL database on server "A" that has had updates etc etc on it at the same time the same database is on server ...
1
vote
5answers
133 views

Making python imports more structured?

The code works but looks messy so this might be a code review question where I didn't study enough of pythons conventions to know how to structure and organize the beginning of my file more pythonic. ...
1
vote
0answers
76 views

importing contents from google spreadsheets to MySql using php

I need to import the worksheets from google spreadsheets and store it in MySQL.I have tried the code available with zend_gdata_library,but i am getting lot of errors on it. Can anybody help me to get ...
1
vote
1answer
40 views

Migrating existing document system into Sharepoint; how hard is this?

I have a document system called eDrawer (by LSSP Corp). We have around 100,000 documents in this system. It can export into a folder structure, and with each exported PDF, it will export a text file ...
1
vote
0answers
124 views

XML and JSON files to a database - MySQL or NonREL DB like HBase,Hive, Couch or MongoDB

I'm after a very simple way to import some data that scattered in XML and JSON format to a MySQL table or a collection of column families in a non-relation DB like HBase or Mongo... Essentially what ...
1
vote
2answers
104 views

ActionScript 3 - Inline import?

I'm a strong Java developer, and I've been learning Flash for the last 16 hours. However, I've come across one thing that keeps bugging me. Why is it, that I can't do something similar to, try { } ...
1
vote
1answer
326 views

Can a C# program read a text file into memory and then pass that object to a method that requires a filename?

In a C# program I am importing a large text file (300mb) into a MySQL database via the MySqlBulkLoader function of the MySql .Net Connector. The import takes quite a long time and results in almost ...
1
vote
3answers
229 views

Can I use C++ functions in Visual Basic?

I'm kinda new to programming, but I have made quite a good library for calculating Math problems like Quadratic Equations and many other. Now I met a friend, and hes programming a little in VB, and we ...
1
vote
1answer
70 views

Importing dependencies using a class that inherits from Lazy<>

Can you import using a class that inherits from Lazy rather than Lazy itself? I am exporting using a derivitive of ExportAttribute that contains metadata. [FeatureExport(/* Feature Metadata ...
1
vote
1answer
956 views

import vcard in android 2.1

I'm trying to import a vcard into the android contacts. Within the contact manager there is an option to import a vcf file stored on the sd-card into the contacts. How can this be triggered via code? ...
1
vote
3answers
404 views

Image from Java GUI to MATLAB

I have a problem with transferring the image (RGB data) I get from Java GUI (for which I have the source code) to a MATLAB array. Can this be done? I don't know where to start since I'm not very ...
1
vote
4answers
263 views

'import feedparser' works via SSH, but fails when in browser

I installed feedparser via SSH, using $ python setup.py install --home=~/httpdocs/python-libraries/feedparser-4.1/ I did that because I don't seem to have permission to properly run 'python ...
1
vote
2answers
1k views

using activex dll in vc++ win32 project

hi i have got a ScreenCameraSDK and it comes with a 11kb dll file, it has a documentation too which lists the functions which can be used. It says ScreenCamera SDK ActiveX Reference Documentation ...
1
vote
1answer
444 views

How do you check whether a cell is readonly in EXCEL using C#

I am importing data to Excel sheets from a database. For this, I am using datareader. The excel sheet template has some macros and few formulae calculated and its not the normal excel worksheet. so I ...
1
vote
1answer
1k views

Import Flash CS4 Project to Flex Builder 3

I'm fairly deep with Flash CS4 project. I've got Flex Builder now, and I want to use it. I have .fla file and couple of Classes. .fla file is actually one ActionScript Frame document with Library ...
0
votes
0answers
17 views

mymodel_url from resque job class in Rails 3 issue

I have my custom class inside my app/models to work with resque the class is class TwittearDescuentosHotJob @queue = :twitter def self.perform descuento_hot = Descuento.para_hoy.where(:hot ...
0
votes
1answer
11 views

Importing Comments Into Atlassian OnDemand from CSV

I am having trouble importing comments into Atlassian Jira (I have a huge CSV file which I can tweak, although it can be a little hard to manage). Does anybody have any experience of bulk importing ...
0
votes
0answers
24 views

Importing properties to other ViewControllers

Nevermind, I found the answer myself: I found the solution. I just did the same thing from Controller1 to Controller2, again from Controller2 to Controller3 (a little bit different though). The way ...
0
votes
1answer
149 views

Yii framework: importing classes while in the config/main.php file

Trying to import a class while in config/main.php (before the Yii configuration is returned): //class LanguageSettings is placed directly in protected/components/LanguageSettings.php ...
0
votes
1answer
31 views

40000 records in sdf - Performance

I'm using sqlce 3.5 in Datalogic memor. Importing 40,000 records to a table from other sdf inside this scanner, it takes for 3 minutes. Searching a field in this table, it takes 4 seconds. Is it ...
0
votes
1answer
30 views

Testing SQL import scripts with a limited “subset” of live data

I'm replacing an in house built application with a new (in house) application. Part of this process involves migrating data from the old application to the new one. Both applications are using SQL ...
0
votes
1answer
46 views

Use excel or an other editor to write data before importing (with foreign keys)

I am making a website in rails with a lot of data. This data was writen by my client on an Excel file. But i have a problem, how to manage foreign keys? For example, I have many hotels on one sheet. ...
0
votes
1answer
132 views

error when importing android projects into eclipse

currently i have difficulties trying to import the lynda.com android app development with java essential training exercise files into eclipse. I keep getting some java errors like this.Can someone ...
0
votes
0answers
12 views

About importing .txt files, how much size or delimiter can i set?

I am working on a mcq test and i need to import big .txt files. My .txt file has this structure =chapter of all answer bellow +answer1 blahblah answer2 blahblah {error} blahblah ...
0
votes
1answer
76 views

how to speed up with csv and access

There are over 210,000 records in a txt file. One record has three columns with space split. To import this file into ms access, system replace spaces into comma. And then using insert into, system ...
0
votes
1answer
210 views

How to import a CSV file into a DB2 database using .NET?

I am doing a Windows application. How do I import a CSV file into DB2 database table? Through google I got one command: IMPORT FROM 'C:\Documents and Settings\My Documents\sample.csv' OF DEL MODIFIED ...
0
votes
1answer
382 views

Importing Hotmail/Yahoo/Skype contacts in C#

I am trying to build a social networking website of my own (like facebook). Facebook gives an option of importing contact lists from Hotmail/Yahoo/Gmail/Skype and others. I want to implement the same ...
0
votes
1answer
94 views

XCode importing C++ project problems: “referenced from”

I have some problems importing an existing C++ project into my XCode. I already resolved some issues on includes (the use of string.h from another library was a pain), and now I stumbled upon another ...
0
votes
2answers
2k views

zxing project on android

Hello everybody Many weeks ago,I tried to work on a mini project on Android OS requires ZXING, I followed several tutorials on this web site and on other Example: tuto1, and many tags and tutorials ...

1 2