package

Wix 3 driver package installation problem

Hello. I am trying to create a .msi database using Wix to install a driver package. Now this driver package is made to run on all platforms and can be installed on any platform (any version of windows, 2k and later, x86 or x64) by right clicking on the .inf file and selecting the "Install" option. Because the package doesn't need mul...

Find package global variables from data dictionary

I have a package: CREATE PACKAGE my_pkg IS g_var NUMBER; END; / Is there any way I can query SYS views, to find that this package has this global variable? I'm interested in explicit variable name and data type. P.S. Parsing user_source does not count. Edit: I would like to do that without introducing getter/setter functions. ...

[Java] Get a file inside a specifc package

Hi, I've a java package (package A) and I would retrieve a file contained into another package (package B)? How could I do this? Thanks in advance. Best regards. ...

How does/should global data in modules across packages be managed in Python/other languages?

I am trying to design the package and module system for a programming language (Heron) which can be both compiled and interpreted, and from what I have seen I really like the Python approach. Python has a rich choice of modules, which seems to contribute largely to its success. What I don`t know is what happens in Python if a module is ...

Package name for a loop class

I wrote a class that performs an asynchronous loop. It needs a package name. I already have a util package, but feel resistant to put half of my classes in that package. If it really belongs there, I'll put it there, but I'd feel much better if I can find a more appropriate/specific package. What do you think? ...

How to check if a latex package has been installed?

Hi, under Ubuntu, just wonder how to check if a latex package has been installed? When installing, I followed the methods mentioned in http://math.arizona.edu/support/tex/accountpackages.html and http://en.wikibooks.org/wiki/LaTeX/Packages/Installing%5FExtra%5FPackages. Thanks and regards! ...

Why I can't call packagename.modulename.foo()?

In my working python directory I create: packagename/__init__.py packagename/modulename.py test.py In modulename.py I create some empty class: class Someclass(object): pass in test.py: import packagename packagename.modulename.Someclass() Why I can't call packagename.modulename.someclass() in test.py ? AttributeError: 'modul...

Java: Subpackage visiblity?

I have two packages in my project: odp.proj and odp.proj.test. There are certain methods that I want to be visible only to the classes in these two packages. How can I do this? EDIT: If there is no concept of a subpackage in Java, is there any way around this? I have certain methods that I want to be available only to testers and other ...

exception not getting caught when not in the right package in python

EDIT: OK, I managed to isolate the bug and the exact, complete code to to reproduce it. But it appears either something that's by design, or a bug in python. Create two sibling packages: admin & General, each with it's own __init__.py, of course. In the package admin put the file 'test.py' with the following code: from General.test02 i...

Using Intent from non-activity class

I have three classes one main-activity(named MainMap), one non-activity class(named MyItemizedOverlay), and one activity class(named AudioStream). I want to start AudioStream activity from non-activity class but i don't know how to. i tried this is in third class(called MyItemizedOverlay): Intent myIntentA = new I...

Find which python modules are being imported

What's an easy way of finding all the python modules from a particular package that are being used in an application? ...

Can't limit scope of variables in Matlab

Can anyone get the function and class scoping feature to work, as documented in Scoping Classes with Packages ? I create a directory C:\Windows\Temp+undergrad I put a file foo.m in there tat defines a function foo. I make sure C:\Windows\Temp is on the matlab path In matlab, type 'what undergrad' should result in a list of functions an...

Ruby: I want a class called 'Thread' - but there already is one...Module ?

I think my brain died, but I thought there was a simple way of using 'Modules' in Ruby to create a namespace for my own classes - or did I dream that ? What I'm after is the Ruby equivalent to the Java-way of putting my class defs in a package ... Or do I have to just invent a new name for my objects ??? ...

How can I find all the packages that inherit from a package in Perl?

I have a number of different sites that I download data from and massage into other formats (using Perl) for use at work, that are all run from one Perl script kinda like so: #! /usr/bin/perl use strict; use My::Package1; use My::Package2; my $p1 = My::Package1->new; $p1->download; my $p2 = My::Package2->new; $p2->download; and so ...

What is a good software package to create a FAQ site?

I am looking for a faq software package that would allow me to create a Q&A site. I looked at some of the similar questions but I didn't find anything suitable. Does anyone have any suggestions? My wishlist: Prefer a non-wiki solution Windows/.NET solution would be ideal but not required Doesn't matter if solution is commercial/open ...

C# ASP.NET Syntax to Call Oracle Stored Procedure

How from ASP.NET I can call a stored procedure in an Oracle package that accepts a VArray. The VArray will pass a list of keys that the stored procedure will use to modify appropriate records. I know I could send the keys in separate calls or send a delimited list, but I'd rather use an array. ...

Using Nose & NoseXUnit on a Python package

This is a previous post detailing a CI setup for Python. The asker and answerer detail the use of Nose and NoseXUnit with Hudson for their builds. However, NoseXUnit throws an error when run on any source folder where init.py is present: File "build/bdist.linux-x86_64/egg/nosexunit/tools.py", line 59, in packages nosexunit.except...

Is it possible to package dot net nuke custom module with database script?

i have made a custom module on DNN and create its package but when i integrate it with some other DNN application i need to manually create its required database to make that module working with that site. Is it possible to create a package in a manner that it can automatically create its database when integrate it with other applicatio...

How to add database script in DNN custom module development package?

Hi,i have made a custom module on DNN ,created its package and integrated with another DNN application.It works fine.But after uploading the module in another DNN application i am creating module database manually.thats what my problem.. I want to create a module package with its database script.so that when end user upload my module th...

Problem with java socket, won't listen for more than one datagram package...

Hi! I'm creating a server(now called Server1) which is communicating with another server i've got(now called Server2). Server1 sends a datagrampackage to Server2. Server2 is supposed to send two datagram packages back, but i only get one back. Server2 is not the problem, and sends two packages. I use Wireshark to sniff the packages ...