import

What is the best way to import standalone data into a database?

A little background: I have a remote, stand alone SQL Server database that is truncated at the end of every weekend. The data is hardly relational, not normalized at all, and pretty annoying to work with. On top of that, the schema for this database cannot be modified at all, because it is recreated by a third party application. Befo...

Import text file crunching library for Java/Groovy ?

In a lot of real life implementations of applications we face the requirement to import some kind of (text) files. Usually we would implement some (hardcoded?) logic to validate the file (eg. proper header, proper number of delimiters, proper date/time value,etc.). Eventually also need to check for the existence of related data in a tabl...

Importing a CSV file without headers into SQL 2008

I want to import a CSV with 4,8M records into a SQL 2008 table. I'm trying to do it with the Management Studio wizard but it keeps trying to recognize a header row which the CSV doesnt have. I don't find any option to skip this and although I specify the columns myself, the wizard still tries to find a header row and doesnt import anythi...

Importing old mysql data folder

After a reinstall, all of the old data still shows inside the MySQL/data folder, but is not actually loaded into the database. Is there any way to have MySQL scan it's data folder and / or reimport the old folders it has from its previous install? [Some data was changed after the last backup / export - partially my fault - so I would r...

Importing Excel to SQLCE

I have a table in excel format (2007 but I can save as anything below that, naturally), and I have an SQL Compact Edition 3.5 SP1 Database table with corresponding columns. I simply want to populate the SQLCE table with the data from the excel file. The data consists of strings and integers only. I tried this utility to no avail, I also...

Importing MEF-Plugins into MVC Controllers

Hello. There are several examples of using MEF to plugin whole controller/view packages into a MVC application, but i didn't found one, using MEF to plugin funcional parts, used by other controllers. For example, think of a NewsService with a simple interface like interface INewsService { List<NewsItem> GetAllNews(); } That gets ...

python: how/where to put a simple libary installed in a well-known-place on my computer

I need to put a python script somewhere on my computer so that in another file I can use it. How do I do this and where do I put it? And where in the python documentation do I learn how to do this? I'm a beginner + don't use python much. library file: MyLib.py put in a well-known place def myfunc(): .... other file SourceFile.py...

Any other way to import data files(like .csv) in python sqlite3 module ?[not insert one by one]

in sqlite3's client CLI, there is " .import file TABLE_name " to do it. But, I do not want to install sqlite3 to my server at present. in python sqlite3 module, we can creat and edit a DB. But, I have not found a way to import data-file to a TABLE, except inserting rows one by one. any other way? Thanks. ...

how to import ISO 2709 to mysql?

i have a 'ISO 2709' file. i have to convert it to any format that can be imported in mysql table. what format is possible? XML ?? and how?? (i am searching in google about this,but asking you may get a better solution) thanks. ...

we are getting .txt file but not getting proper alignment

we are getting the following texfile_screenshot1.JPG when we are exporting data to .txt file we need output which is shown in texfile_screenshot2.JPG following is the code $myFile = "user_password.txt"; $fh = fopen($myFile, 'a') or die("can't open file"); $newline ="\r\n"; fwrite ($fh,$newline); $stringData1 = ...

python: importing modules with incorrect import statements => unexhaustive info from resulting ImportError

Hi there, I have a funny problem I'd like to ask you guys ('n gals) about. I'm importing some module A that is importing some non-existent module B. Of course this will result in an ImportError. This is what A.py looks like import B Now let's import A >>> import A Traceback (most recent call last): File "<stdin>", line 1, in <modu...

Including/Importing aliases and functions for both bash and zsh

I have a directory of functions and aliases I'd like to include for both bash and zsh terminal invocations (So I don't need to put every function and alias into every separate script and to facilitate organization/tidying of .rc files) What I've tried so far hasn't worked. Just setting this out for further suggestions. ...

How to import classes into other classes within the same file in Python

I have the file below and it is part of a django project called projectmanager, this file is projectmanager/projects/models.py . Whenever I use the python interpreter to import a Project just to test the functionality i get a name error for line 8 that FileRepo() cannot be found. How Can I import these classes correctly? Ideally what I a...

Cocoa Controller imports Model, Model imports Controller --> Exception

Hi, why isn't it possible in Cocoa that two Classes both import each other? I tried the following code: Controller.h: #import <Cocoa/Cocoa.h> #import "Model.h" @interface Controller : NSObject { Model *model; } @end Model.h: #import <Cocoa/Cocoa.h> #import "Controller.h" @interface Model : NSObject { Controller *controller; } ...

What's the best way to use python-syntax config files (in python of course)?

My config file is really just a big python dict, but I have many config files to run different experiments and I want to 'import' a different one based on a command line option. Instinctively I want to do import ConfigFileName where ConfigFileName is a string with the config file's python package name in it... but that doesn't work. An...

how to import Java class with Python using Eclipse?

Hi, I'm trying to write Jython where the Python file imports classes from Java I'm using Eclipse with PyDev. My Python code looks like: from eclipsejavatest import eclipseJavaTest from eclipsejavatest import JavaClass class eclipsePyPrint(eclipseJavaTest): def eclipsepyMain(self): print "python main method" ecli...

@import doesn't work when suffix isn't .css?

This works: @import "foo.css" This fails: @import "foo.cssabc" Any reason for this? ...

how to import a 'zip' file to my .py ..

when i use http://github.com/joshthecoder/tweepy-examples , i find : import tweepy in the appengine\oauth_example\handlers.py but i can't find a tweepy file or tweepy's 'py' file, except a tweepy.zip file, i don't think this is right,cauz i never import a zip file, i find this in app.py: import sys sys.path.insert(0, 'tweepy.zip...

Populate Android Database From CSV file?

Is it possible to take a csv file stored in the res/raw resource directory and use it to populate a table in the sqlite3 database? My thought was that, if there was a way to do a bulk import for the entire file into the table then that would be cleaner and faster than iterating over each line in the file and executing individual insert ...

Bypassing import in Python so that I don't have to upload multiple libraries and classes?

For example, I have a few python scripts, that link together and some libraries for it that need to be imported. I'm trying to reduce it to only one script. So instead of: import library.py Can I just take the coding from library.py and put into the main script? ...