import

Is there a animated map maker can import data into itself?

Hello, I want to make a animated map. I can import data into the map, and then, the map changes depends on the data. For example, i have a map now. The map consists of many parts. Each part will change its color according to its status(Not start, started, ended). I specify a date for its status started, this part will change its color...

How to read.table() multiple files into a single table in R?

I have filenames named <InputData>.<TestName>.csv and I'd like to make graphs for each test. The best way I can see to do this is to make one R table for each TestName. Each test produces the same columns of data, so I'd like to pull in all the data for each test into an R datatable with an extra column for the inputdata. I'd like t...

Safe class imports from JAR Files

Consider a scenario that a java program imports the classes from jar files. If the same class resides in two or more jar files there could be a problem. In such scenarios what is the class that imported by the program? Is it the class with the older timestamp?? What are the practices we can follow to avoid such complications. ...

Importing war file into eclipse and build path problem

Hi, I am facing some weird problem when importing .war file into eclipse. The problem is, the build folder does not contain any necessary class folder. So when I try to set the build path, eclipse reports "Error while adding to build path. Reason: cannot nest output folder 'projectName/build/class' inside 'projectName/build'. From ...

Import vs C's #include

In C: #include "foo.h" int main() { } I believe that "foo.h" effectively gets copied and pasted in at the spot of the "#include". Python imports are different though, I'm finding. I just refactored a bit of GAE code that initially had ALL request handlers in one big index.py file. NEW directory tree: + | +- [handlers] // all...

How to load Excel or CSV file into Firebird?

I'm using Firebird database and I need to load Excel file into a database table. I need a tool that does this well. I tried some I found on Google, but all of them have some bugs. Since Excel data is not created by me, it would be good if it could scan the file and discover what kind of data is inside and suggest a table to be created ...

Reading a text file

hi friends i am importing a text file database in my sql server database in asp.net c#. but i cannot fetch the column name from .txt file which contains a numeric data now what to do? please tell me if anyone knows very very thanx in advance ...

how to import .xml file to database

hi i want to import my .xml file to sql server database in asp.net 3.5 c# for windows application.so give m rply as fast as posible. ...

How to import data from a file into a single column of a SQL Server database?

I have a very simple table with only one column (+ the key column). This column is a varchar(N) type. I would like to import data from a text file. The file looks like this: string1 string2 . . . stringZ I don't know how to generate a script to insert these values into the table. Or is there an even simplier tool to import in such a s...

Problem in System.out.println statement

Whenever we write any statement to print to console in Java program: System.out.print or System.out.println In above both statements we're calling out reference variable of PrintStream object without explicitly importing java.io package, so how we're accessing that object methods without resulting any compile time error? ...

As3 Errors 1046 type not found if I specify a document class

Hello. In my as3 code using Flash cs3, everything works fine without any document class. I can use event handlers and they work. But, once I attach a document class, I start to get this error: 1046: Type was not found or was not a compile-time constant: KeyboardEvent. Could somebody explain why this occurs? This is what my document cla...

(SQL) How to set column names of MySQL table as the delimited first line of my infile?

The first line of my infile is actually the name of the columns delimited in the file. Is there anyway for a mysql import to use those column names in the file, and create columns in the mysql table with those names so that I don't have to? ...

How to import or include data structures (e.g. a dict) into a Python file from a separate file

I know I can include Python code from a common file using import MyModuleName - but how do I go about importing just a dict? The problem I'm trying to solve is I have a dict that needs to be in a file in an editable location, while the actual script is in another file. The dict might also be edited by hand, by a non-programmer. script....

Oracle Data Pump import to a sql file error :ORA-31655 no data or metadata objects

Hello, I'm using Data Pump to export/import data, one requirement is to import data to a sql file. The OS is window. I made the follow export : expdp system/password directory=dpump_dir dumpfile=tablesdump.dmp content=DATA_ONLY tables=user.tablename and it works, I can see the file TABLESDUMP.DMP in the directory path. then when I tr...

Importing large datasets on iPhone using CoreData

Hi there, I'm facing very annoying problem. My iPhone app is loading it's data from a network server. Data are sent as plist and when parsed, it neeeds to be stored to SQLite db using CoreData. Issue is that in some cases those datasets are too big (5000+ records) and import takes way too long. More on that, when iPhone tries to suspen...

Automatically remove explicit package declarations with import statements in Java

Hello, I have a project created by others that includes thousands of class files and has the package names explicitly typed out for every reference to any of their classes. It looks like the code was reverse engineered. Is there a good tool for Java that refactors the code so that the explicitly typed package prefixes are removed from c...

Importing org.apache.commons into android applications

Hay, how do i import org.apache.commons packages into android so i can use them in my applications? Thanks ...

How to import data from a file as an array in Mathematica?

I am trying to import a data set to Mathematica. The problem is that I cannot have the imported data as regular numbers in Mathematica. They are imported as "list". So, I cannot use them in the equations I need: Import["out.dat", "Data"] {{5.7, 4.3}, {-1.2, 7.8}} Array[cc, {2, 2}] For[i = 1, i <= 2, i++, For[j = 1, j <= 2, j++, cc[...

imports while starting an interactive shell

When I start the interactive django shell through manage.py, by executing python -v manage.py shell from the project directory, I see a lot of modules of format django.package.module getting imported in the verbose output but still I have to import them to use it in the shell. The same happens when I just run the Python shell (with...

Java import error in eclipse

I have a code written in java. when i load it in eclipse it shows an error in the java code import line " The import com.sun.java.browser.plugin2 cannot be resolved" import com.sun.java.browser.plugin2.*; How can i fix this error..?? ...