import

Importing my custom class and calling it's method?

I have created a custom class for my Android project called "Sounds" I want to be able to call it from my activity. The contents of my class are as follows: package com.mypackage; import java.util.HashMap; import android.content.Context; import android.media.SoundPool; public class Sounds { private static boolean sound = true; priv...

flash export won't include images imported into stage or library

Hello, I have a flash file (banner ad) that uses some jpgs that I imported onto the stage. When I publish the file... It won't include the images. If the images are in the same folder as the swf.. it will work. However, just the SWF on its own will not display the images. Any ideas? ...

Need Time-Efficient Method of Importing Large CSV File Via PHP Into Multiple MySQL Tables

Okay, I'm having some serious issues here. I'm new to this site, and new to dealing with importing CSV data via PHP, but I'm not new to programming. Currently, I'm working on building a Customer Relationship Manager. I need to create a script to import a file that will populate the database with leads. The main issue here is that the Le...

Python: why can't an imported module reference another imported module?

main.py: import subone import subtwo subone.py: a = 'abc' subtwo.py: print subone.a Running python main.py throws a NameError: name 'subone' is not defined. I expected it to print 'abc'. Refactoring it to use from import and classes doesn't help: main.py: from subone import * # Only using from X import * for example purpose...

about mysqlimport show warnings

i try to use mysql command to achieve show warnings after execution but my command seems didn't work,what's wrong with the below code,i have tested for many times mysql -uroot -pbin \W --execute="LOAD DATA LOCAL INFILE '/home/mlzboy/code/mq/model_product.csv' INTO TABLE search.model_product FIELDS TERMINATED BY ',' ENCLOSED BY '"' ESCAP...

SSIS packages to import Excel Files into SQL Server

We have a number of import jobs that previously worked fine. These dtx packages were execute from VS2005 on a Windows XP box with Office 2007 installed. The developer has not got a nice new machine, 64bit, Windows 7, Office 2010. Now when he tries to execute the packages he gets the following error: SSIS package "Import_BygningsKa...

Python relative import causes syntaxerror: invalid syntax

Hi all, I'm trying to install this great python module Python-Chrono to my python environment, but it fails at least with python 2.4.3 and 2.6.6 with the following error message: Traceback (most recent call last): File "setup.py", line 30, in ? import chrono File "/home/janne/python-chrono-0.3.0/chrono/__init__.py", line 22 ...

Unused imports in .NET

The VB.Net IDE allows me to scan for unused references. But I also have a lot of unused imports in my application. Is there a way to scan for unused imports in all classes, or does having an unused import not hurt the performance of my application? ...

Running mysqldump through Python's subprocess module is slow and verbose

@cost_time def dbdump_all(): "导出数据库所有数据至当前目录下以年月日命名的sql文件" filename=datetime.datetime.now().strftime("%Y-%m-%d") cmd="""mysqldump -u root -pzhoubt --opt --quick --database search > ./%s.sql"""%filename args=shlex.split(cmd) p=subprocess.Popen(args) #stdout, stderr = p.communicate() #print stdout,stderr pri...

"import numpy" results in error in one eclipse workspace, but not in another

Whenever I try importing numpy in my new installation of Eclipse and Pydev, I get the following error: Traceback (most recent call last): File "Q:\temp\test.py", line 1, in <module> import numpy File "C:\Python26\lib\site-packages\numpy\__init__.py", line 132, in <module> import add_newdocs File "C:\Python26\lib\site-packa...

bulk posting to wordpress via scripts.

In current project i need to make bulk posts to wordpress (from text files) and need to add dates of mine own choice . What is best way to do it ? ...

Importing data from SQL database in Excel 2003 VS Excel 2010 (VBA)

Hi, this is my first post, so I appologize if some of the formatting is not as it is usually expected. Please let me know if I've done something wrong. So, my company finally upgraded to MS Office 2010. Up untill now I've been working in 2003. I am a sql programmer, and I constantly create reports in excel that pull data from our dat...

Is it possible to overload from/import in Python?

Is it possible to overload the from/import statement in Python? For example, assuming jvm_object is an instance of class JVM, is it possible to write this code: class JVM(object): def import_func(self, cls): return something... jvm = JVM() # would invoke JVM.import_func from jvm import Foo ...

Importing nested modules in Python

I'm trying to import a few libraries into my program (which is a google AppEngine application). Basically, I'm supposed to put all libraries in the root folder, but I've just created another folder called lib and placed them within that folder. (I've created the __init__.py) Imports regularly work fine by using the import lib.module o...

Using utility classes in the android programming

Hi Everybody! I have a little idea of the Utility Classes with a slight doubt on demand. If I use a Utility class in my Application than to use that class in my main Activity do I have to create the object of that class or I can directly Import that class in my main activity? I am Sorry if I am not making a clear sense. In the nutsh...

Importing Excel Sheets into MySQL with Values that relate to a separate table

Hello everyone, First up, this might be the wrong place to ask this question.. So, sincere apologies for that! I have two MySQL Tables as follows: First Table: employee_data id name address phone_no 1 Mark Some Street 647-981-1512 2 Adam Some Street 647-981-1214 3 John So...

Spread sheet Data import engine

We are developing a web application which has a requirement of importing spread sheet data of any format like excel or database table and parse into csv (with first column as heading) and re-import it into our data grid We are looking to develop it ground up (may be trying to re-invent the wheel) I would appreciate if anyone provi...

Import problems using GAE and python 2.5

So here are my classes and when I run I dont get any error at all just exits: User class in user.py from models.WO_list import WOList from models.WO_list_user import WOListUser WOList class in WO_list.py from models.user import User from models.WO_list_WO import WOListWO WOListWO class in WO_list_WO.py from models.WO_list import ...

Modify CSV field on import to mysql

I'm trying to import a CSV file to a mysql database. The CSV file contains (amongst other things) dates in the following format: "2010-04-31 17:43:12" My first approach was to use the following .sql script: USE test; LOAD DATA INFILE '/tmp/test.cvs' replace INTO TABLE test_table FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' (......

how to import table in txt to mysql, with garbage on top and bottom of the file?

Let say I have a file with 20 lines, the first 3 lines are useless instruction for using the table, the 4th line is the header, the 5th to 17th lines are tab-delimited data, and the 18th to 20th lines are some useless remarks. And I want to import the table from the 4th line to the 17th line. How can I do it in MySQL? Something to work w...