import

How to see imported Oracle tables

Hello. I have oracle dump file from Oracle8. I am trying to import data in Oracle 10. For importing data I am using PL/SQL Developer(buy the way, I have TOAD client). I am doing that by click Tools->Import Tables choose Oracle Import, and then choose Import file. after that click Ok, Done. so How I can find imported tables? I am using "s...

Python: Dynamically import module contents

I have lots of from myproject.settings import param1 from myproject.settings import ... scattered all over my project. Upon startup, I would like to load different "settings" module according to env var (for example export SETTINGS=myproject.settings2) I tried to put in the myproject.__init__.py someting like module_name = os.en...

How to import my imports in JSP?

All of my JSPs have this at the top: <%@ page language="java" isELIgnored="false" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <%@ taglib prefix="spring" uri="http://www.springfr...

MEF Import attribute

Using MEF, I know you can do this to import your interface: class MyClass { [Import(typeof(IUser))] private IUser m_userName; } Can I do something similar but within the method? For example, this below does not compile: class MyClass { public void DoWork() { [Import(typeof(IUser))] IUser userName; userNam...

Do I need to import the AppDelegate_Phone.h file?

Do I need to import the AppDelegate_Phone.h file (which in turn imports AppDelegate_Shared.h)? I am trying to use Core Data. The AppDelegate_Shared.h already has it set up. If I want to read information into a UITableView from Core Data, must I import my delegate file explicitly? ...

insert xls/csv file into access 2007 table using vba

I have several excel files carrying 90 columns and about 500 rows, each file has a header of 4 rows, and I need to insert them into one access table. I am able to do the import by using the for...loop to loop all the excel files and all of the rows inside the file, but this is too slow. I have used mysql in R and it can be done easily ...

how to put functionality to allow other sites to import our sites users?

how to put functionality to allow other sites to import our sites users? ...

Importing fixed-width text files to Mysql with PHP

Hey all, I'm trying to import fixed with text files into a Mysql table. I'm digging around for answers, but my main issue is that I can't figure out the logic of how I should do this. Maybe someone could offer some hints on process: Steps 1. fopen the file $file_handle = fopen("thefile.txt", "r"); 2. Use feof to go to the end o...

How to import external module in python macro for OpenOffice?

Hello :) I'm writing a macro for OpenOffice in python, and I have a problem. I want to import external module (gdata) so i write import uno import gdata.calendar.service but when I try execute macro (Tools -> Marcos -> Run Macro..) I always get ImportError :/ I have gdata module in my PYTHONPATH, it's working when I test it in interp...

Wordpress blog : Import content

Hi, I am running a website using PHP/MySQL. Now I want to allow Blogs using wordpress in my website so I can use Google Adsense along with blog content. I have installed Wordpress on my site, using tools provided by host service provider. Now is there anyway I can import selective-content from MySQL database to these wordpress blogs? ...

Oracle Import Export compatibility matrix

Is there an official matrix that clearly explain how export dump format done with a specific version, is or not compatible with all others? I mean to fill this grid: Exp done with version: | 7 | 8i | 9i | 10g | 11g Is compatible with Imp 7 |yes | no | no | no | no 8i|yes |yes | no | no | no ...

Creating a new attribute does not update product flat data

Hi there, I'm writing an import module to import configurable products into magento, which works quite fine. I've tweaked the import so that it can create all necessary attribute sets, attributes and attribute options needed for creating the configurable products. So far everything works ... quite everything. When the import creates a n...

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

Hello, 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 scale) and a module: quick.py import gtk from quick_window import * w.show_all() gtk.main() quick_window.py w = gtk.Window()...

Neither ruby and nor irb can load .rb file in current directory

I'm having a really noob problem with importing files in Ruby. I'm making a Ruby app in Windows XP. All the class files for the app are in "C:/Documents/Prgm/Surveyor_Ruby/lib". But when I require a file in another file, neither ruby nor irb can find the required file. The current directory's contents: C:\Documents\Prgm\Surveyor_Ruby\l...

Can't import comtypes.gen

I have comtypes 0.6.2 installed on Python 2.6. If I try this: import comtypes.gen I get: Traceback (most recent call last): File "<pyshell#2>", line 1, in <module> import comtypes.gen ImportError: No module named gen Other imports like import comtypes and import comtypes.client, however, work fine. What am I doing wrong? ...

Import a vcard 3.0 automatically into android contacts (Android 2.1)

I'm trying to import a vcard (vers. 3.0) automatically 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 I trigger this function with handing over a file? ...

Android 2.1 vcard contact fields

Hi! I am trying to import a vcard into the contacts on my android phone. I have problems with some fields, e.g Family Name, Job title, Company,... With fields like phone and email it is already working. Here is a part of my code: Intent i=new Intent(Intent.ACTION_INSERT); Uri uri = Uri.parse("content://com.android.contacts/con...

fastest Import of a csv to a database table

Hi , I have implemented an import functionality which takes data from a csv file in an Asp.Net appication. The file of the size can vary from a few kb's to a max of 10 MB. However when an import occurs and if the file size is > 50000 it takes around 20 MINS . Which is way too much of a time. I need to perform an import for around 30000...

IronPython cannot import module os

Hello, So I have a basic ZIPPED IronPython (2.6 or 2.6.1) that I just unzip, start ipy.exe, type "import os" and hit enter. The following output happens: Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named os It doesn't work even if I import clr first. What's it to be done ? I've goo...

Writing an Eclipse plug-in to import existing documentation into JavaDoc comments.

I would like to write an Eclipse plug-in that is able to import existing documentation into JavaDoc comments of existing Java code. Background: I've generated Java code to communicate with an third party (native) program. Now I would like to import the documentation of the third party program into my generated code. What I've already d...