import

How to change bdb cache size in mysql?

I would like to change variable bdb cache size (bdb_cache_size) on my mysql database to be able to import bigger SQL files (yes, i've set all other variables for example in php.ini to higher values and it does not work) in phpmyadmin. How can I do that? ...

How do I find the modules that are available for import from within a package?

Is there a way of knowing which modules are available to import from inside a package? ...

How can I access variables from another class?

There is probably a very simple solution for this but I can't get it working. I have got multiple classes in my Cocoa file. In one of the classes class1 I create a variable that I need to use in another class class2 as well. Is there a simple way to import this variable in class2? ...

Linking to Python import library in Visual Studio 2005

I have a C++ application that has embedded Python. I'm building with Visual Studio 2005. When I try to link to python26.lib, I get a number of unresolved symbols, all of which begin with "__imp": error LNK2019: unresolved external symbol __imp__Py_Initialize referenced in function _main python26.lib is an import library (installed by t...

How do you add a directory of java classes to a project?

I have a Java project I'm working on, and wish to include a directory full of classes. These are the "JEdit Syntax" classes, and come within two packages: org.syntax.jedit org.syntax.jedit.tokenmarker However, everywhere I look it tells me to "import the entire jar file". My problem is that there is no jar file, just a directory wit...

How do I import a .dmp file into Oracle?

I have a .dmp file that I would like to import into Oracle 9i. How do I do that? ...

How to use an array that is created in one class in a second class?

I have created an array in the implementation of my class loginController. Now I want to use this array (with its objects) in another class of my project. What is the right way to import it? ...

Passing NSMutableArray to other classes

I have created an NSMutableArray in the implementation of my class loginController. The mutable array contains a set of strings. I want to pass the mutable array with its objects to other classes within my cocoa-project. What is the best way to pass the array? ...

Unable to access property of NSArray in cocoa

I'm trying to pass an NSArray containing strings for use in another class than the one in which it is generated. Therefore I have made it a property as following: loginController.h #import <Cocoa/Cocoa.h> @interface loginController : NSObject { NSArray *myArray; } @property (nonatomic, retain) NSArray * myArray; @end log...

Simple tool to download all imported/included WSDLs and Schemas

WSDLs often import other WSDLs and XML schema. Given a URL to a WSDL, is there a tool that will download the WSDL and all other referenced WSDLs and schemas? Ideally, this tool would be either Java or Perl friendly. ...

Why is my import not working in Java?

I have a Java assignment that uses components to build program. The teacher gave us a JAR we are to use to build the calculator using Eclipse. The JAR has 2 classes. We must import the JAR and use its classes. I import the JAR: import SWEB401_HW1.NumericOperation; but when I try to create an object for the class, it gives me an err...

How to import initial data to database with Hibernate?

When deploying applications, I often use Hibernate’s capacity to create database schema in order to simplify the deployment. This is easily achievable by configuring hibernate.hbm2ddl.auto property. However, on occasion I also need to insert some initial data to database, for example root user. Is there a way I could achieve this via h...

Can't import java.lang.instrument.Instrumentation

If I try to use import java.lang.instrument.Instrumentation; it says this statement can not be resolved. What could be wrong? I am using jdk1.6. ...

Working with XML document type definitions in .net

Is it possible to import an XML DTD into Visual Studio in order to generate a proxy class? I have a third party .dll that I need to interface with that is designed like an XML service. The interface into the .dll is all driven by XML inputs, and returns output as XML. The nice thing about it is that all the input and output types are we...

how to open bpr projects in Borland Codegear C++ Buider 2009 ?

I'm trying to import the log4cpp project into Borland Codegear C++ Builder 2009 . The rar file of the project contains a bpr file which corresponds to a project. When trying to open it, an error popup window is shown, saying: OLE error 80131040, ClassID: {F8FEDD39-E3CE-4B8D-A657-9CA24686881F} I do not have idea of what's going on, an...

export data from oracle 10g and import to oracle 9i

HI all Can you tell how to import data from oracle 10g to Oracle 9i. Is it ok i can export the data from Oracle 10g and import it to 9i directly, it should work??? or i need to follow some other procedure??? Kindly help me Thanks in advance Joseph ...

DTS Excel Import Problem (SQL Server 2K) Only First Row is imported

Hi, i have a Problem with the DTS Excel Import. I use a Excel data source and a Data Transformation Taks to import the data in an existing table. First Error was a Buffer is too small because of a ntext column in the table, but i have set the fetch buffer size to 5 and the error was gone. But now only the first row is imported, tha da...

Importing selective data using impdp

I have an entire DB to be imported as a dump into my own. I want to exclude data out of certain tables(mostly because they are huge in size and not useful). I cannot entirely exclude those tables since I need the table object per se(minus the data) and will have to re create them in my schema if I do so. Also in the absence of those tab...

Importing in Python

In Python 2.5, I import modules by changing environment variables. It works, but using site-packages does not. Is there another way to import modules in directories other than C:\Python25 ? ...

How to add a Python import path using a .pth file

If I put a *.pth file in site-packages it's giving an ImportError. I'm not getting how to import by creating a *.pth file. (Refers to importing in python) ...