dbTalk Databases Forums  

help me pick a name for my project!

comp.databases.oracle.misc comp.databases.oracle.misc


Discuss help me pick a name for my project! in the comp.databases.oracle.misc forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
mh@pixar.com
 
Posts: n/a

Default help me pick a name for my project! - 05-14-2008 , 12:14 AM






So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, To give you a flavor of what the program does,
if you have a package like this:

create or replace package keyword
as
type my_ref is ref cursor;
procedure add(aid in number, akeyword in varchar2);
procedure delet(aid in number, akeyword in varchar2);
procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
procedure get_keywords(aref out sys_refcursor, aid in number);
function get_keywords2(aid in number) return my_ref;
function all_words return my_ref;
end keyword;

It will give you a Python class that looks something
like this:

class Keyword:
def __init__(self,curs):
def add(self,aid,akeyword):
def all_words(self):
def delet(self,aid,akeyword):
def get_ids(self,aref,akeyword):
def get_keywords(self,aref,aid):
def get_keywords2(self,aid):


which you can use like this:

import keyword
k=keyword.Keyword(mycursor)

# add 'final' keyword to asset 23
k.add(23,'final')

# iterate over all the keywords for asset 23
# using a ref cursor
for x in k.get_keywords2(23):
print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. many thanks!!

--
Mark Harrison
Pixar Animation Studios

Reply With Quote
  #2  
Old   
metzguar
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 02:19 AM






On 14 Mai, 07:14, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, To give you a flavor of what the program does,
if you have a package like this:

create or replace package keyword
as
type my_ref is ref cursor;
procedure add(aid in number, akeyword in varchar2);
procedure delet(aid in number, akeyword in varchar2);
procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
procedure get_keywords(aref out sys_refcursor, aid in number);
function get_keywords2(aid in number) return my_ref;
function all_words return my_ref;
end keyword;

It will give you a Python class that looks something
like this:

class Keyword:
def __init__(self,curs):
def add(self,aid,akeyword):
def all_words(self):
def delet(self,aid,akeyword):
def get_ids(self,aref,akeyword):
def get_keywords(self,aref,aid):
def get_keywords2(self,aid):

which you can use like this:

import keyword
k=keyword.Keyword(mycursor)

# add 'final' keyword to asset 23
k.add(23,'final')

# iterate over all the keywords for asset 23
# using a ref cursor
for x in k.get_keywords2(23):
print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. many thanks!!

--
Mark Harrison
Pixar Animation Studios
Mark,

you have an
Oracle
Pl/SQL
Python
Interface for
DUMmies.

So it's cristal clear that its name must be OPPIDUM.

Urs Metzger


Reply With Quote
  #3  
Old   
metzguar
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 02:19 AM



On 14 Mai, 07:14, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, To give you a flavor of what the program does,
if you have a package like this:

create or replace package keyword
as
type my_ref is ref cursor;
procedure add(aid in number, akeyword in varchar2);
procedure delet(aid in number, akeyword in varchar2);
procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
procedure get_keywords(aref out sys_refcursor, aid in number);
function get_keywords2(aid in number) return my_ref;
function all_words return my_ref;
end keyword;

It will give you a Python class that looks something
like this:

class Keyword:
def __init__(self,curs):
def add(self,aid,akeyword):
def all_words(self):
def delet(self,aid,akeyword):
def get_ids(self,aref,akeyword):
def get_keywords(self,aref,aid):
def get_keywords2(self,aid):

which you can use like this:

import keyword
k=keyword.Keyword(mycursor)

# add 'final' keyword to asset 23
k.add(23,'final')

# iterate over all the keywords for asset 23
# using a ref cursor
for x in k.get_keywords2(23):
print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. many thanks!!

--
Mark Harrison
Pixar Animation Studios
Mark,

you have an
Oracle
Pl/SQL
Python
Interface for
DUMmies.

So it's cristal clear that its name must be OPPIDUM.

Urs Metzger


Reply With Quote
  #4  
Old   
metzguar
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 02:19 AM



On 14 Mai, 07:14, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, To give you a flavor of what the program does,
if you have a package like this:

create or replace package keyword
as
type my_ref is ref cursor;
procedure add(aid in number, akeyword in varchar2);
procedure delet(aid in number, akeyword in varchar2);
procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
procedure get_keywords(aref out sys_refcursor, aid in number);
function get_keywords2(aid in number) return my_ref;
function all_words return my_ref;
end keyword;

It will give you a Python class that looks something
like this:

class Keyword:
def __init__(self,curs):
def add(self,aid,akeyword):
def all_words(self):
def delet(self,aid,akeyword):
def get_ids(self,aref,akeyword):
def get_keywords(self,aref,aid):
def get_keywords2(self,aid):

which you can use like this:

import keyword
k=keyword.Keyword(mycursor)

# add 'final' keyword to asset 23
k.add(23,'final')

# iterate over all the keywords for asset 23
# using a ref cursor
for x in k.get_keywords2(23):
print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. many thanks!!

--
Mark Harrison
Pixar Animation Studios
Mark,

you have an
Oracle
Pl/SQL
Python
Interface for
DUMmies.

So it's cristal clear that its name must be OPPIDUM.

Urs Metzger


Reply With Quote
  #5  
Old   
metzguar
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 02:19 AM



On 14 Mai, 07:14, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, To give you a flavor of what the program does,
if you have a package like this:

create or replace package keyword
as
type my_ref is ref cursor;
procedure add(aid in number, akeyword in varchar2);
procedure delet(aid in number, akeyword in varchar2);
procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
procedure get_keywords(aref out sys_refcursor, aid in number);
function get_keywords2(aid in number) return my_ref;
function all_words return my_ref;
end keyword;

It will give you a Python class that looks something
like this:

class Keyword:
def __init__(self,curs):
def add(self,aid,akeyword):
def all_words(self):
def delet(self,aid,akeyword):
def get_ids(self,aref,akeyword):
def get_keywords(self,aref,aid):
def get_keywords2(self,aid):

which you can use like this:

import keyword
k=keyword.Keyword(mycursor)

# add 'final' keyword to asset 23
k.add(23,'final')

# iterate over all the keywords for asset 23
# using a ref cursor
for x in k.get_keywords2(23):
print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. many thanks!!

--
Mark Harrison
Pixar Animation Studios
Mark,

you have an
Oracle
Pl/SQL
Python
Interface for
DUMmies.

So it's cristal clear that its name must be OPPIDUM.

Urs Metzger


Reply With Quote
  #6  
Old   
neil kodner
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 11:45 AM



On May 13, 11:14*pm, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. *It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. *By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, *To give you a flavor of what the program does,
if you have a package like this:

* * create or replace package keyword
* * as
* * * * type my_ref is ref cursor;
* * * * procedure add(aid in number, akeyword in varchar2);
* * * * procedure delet(aid in number, akeyword in varchar2);
* * * * procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
* * * * procedure get_keywords(aref out sys_refcursor, aid in number);
* * * * function get_keywords2(aid in number) return my_ref;
* * * * function all_words return my_ref;
* * end keyword;

It will give you a Python class that looks something
like this:

* * class Keyword:
* * * * def __init__(self,curs):
* * * * def add(self,aid,akeyword):
* * * * def all_words(self):
* * * * def delet(self,aid,akeyword):
* * * * def get_ids(self,aref,akeyword):
* * * * def get_keywords(self,aref,aid):
* * * * def get_keywords2(self,aid):

which you can use like this:

* * import keyword
* * k=keyword.Keyword(mycursor)

* * # add 'final' keyword to asset 23
* * k.add(23,'final')

* * # iterate over all the keywords for asset 23
* * # using a ref cursor
* * for x in k.get_keywords2(23):
* * * * print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. *many thanks!!

--
Mark Harrison
Pixar Animation Studios
TASIMO - "There's a snake in my oracle"

*ducks


Reply With Quote
  #7  
Old   
neil kodner
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 11:45 AM



On May 13, 11:14*pm, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. *It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. *By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, *To give you a flavor of what the program does,
if you have a package like this:

* * create or replace package keyword
* * as
* * * * type my_ref is ref cursor;
* * * * procedure add(aid in number, akeyword in varchar2);
* * * * procedure delet(aid in number, akeyword in varchar2);
* * * * procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
* * * * procedure get_keywords(aref out sys_refcursor, aid in number);
* * * * function get_keywords2(aid in number) return my_ref;
* * * * function all_words return my_ref;
* * end keyword;

It will give you a Python class that looks something
like this:

* * class Keyword:
* * * * def __init__(self,curs):
* * * * def add(self,aid,akeyword):
* * * * def all_words(self):
* * * * def delet(self,aid,akeyword):
* * * * def get_ids(self,aref,akeyword):
* * * * def get_keywords(self,aref,aid):
* * * * def get_keywords2(self,aid):

which you can use like this:

* * import keyword
* * k=keyword.Keyword(mycursor)

* * # add 'final' keyword to asset 23
* * k.add(23,'final')

* * # iterate over all the keywords for asset 23
* * # using a ref cursor
* * for x in k.get_keywords2(23):
* * * * print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. *many thanks!!

--
Mark Harrison
Pixar Animation Studios
TASIMO - "There's a snake in my oracle"

*ducks


Reply With Quote
  #8  
Old   
neil kodner
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 11:45 AM



On May 13, 11:14*pm, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. *It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. *By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, *To give you a flavor of what the program does,
if you have a package like this:

* * create or replace package keyword
* * as
* * * * type my_ref is ref cursor;
* * * * procedure add(aid in number, akeyword in varchar2);
* * * * procedure delet(aid in number, akeyword in varchar2);
* * * * procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
* * * * procedure get_keywords(aref out sys_refcursor, aid in number);
* * * * function get_keywords2(aid in number) return my_ref;
* * * * function all_words return my_ref;
* * end keyword;

It will give you a Python class that looks something
like this:

* * class Keyword:
* * * * def __init__(self,curs):
* * * * def add(self,aid,akeyword):
* * * * def all_words(self):
* * * * def delet(self,aid,akeyword):
* * * * def get_ids(self,aref,akeyword):
* * * * def get_keywords(self,aref,aid):
* * * * def get_keywords2(self,aid):

which you can use like this:

* * import keyword
* * k=keyword.Keyword(mycursor)

* * # add 'final' keyword to asset 23
* * k.add(23,'final')

* * # iterate over all the keywords for asset 23
* * # using a ref cursor
* * for x in k.get_keywords2(23):
* * * * print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. *many thanks!!

--
Mark Harrison
Pixar Animation Studios
TASIMO - "There's a snake in my oracle"

*ducks


Reply With Quote
  #9  
Old   
neil kodner
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 11:45 AM



On May 13, 11:14*pm, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. *It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. *By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, *To give you a flavor of what the program does,
if you have a package like this:

* * create or replace package keyword
* * as
* * * * type my_ref is ref cursor;
* * * * procedure add(aid in number, akeyword in varchar2);
* * * * procedure delet(aid in number, akeyword in varchar2);
* * * * procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
* * * * procedure get_keywords(aref out sys_refcursor, aid in number);
* * * * function get_keywords2(aid in number) return my_ref;
* * * * function all_words return my_ref;
* * end keyword;

It will give you a Python class that looks something
like this:

* * class Keyword:
* * * * def __init__(self,curs):
* * * * def add(self,aid,akeyword):
* * * * def all_words(self):
* * * * def delet(self,aid,akeyword):
* * * * def get_ids(self,aref,akeyword):
* * * * def get_keywords(self,aref,aid):
* * * * def get_keywords2(self,aid):

which you can use like this:

* * import keyword
* * k=keyword.Keyword(mycursor)

* * # add 'final' keyword to asset 23
* * k.add(23,'final')

* * # iterate over all the keywords for asset 23
* * # using a ref cursor
* * for x in k.get_keywords2(23):
* * * * print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. *many thanks!!

--
Mark Harrison
Pixar Animation Studios
TASIMO - "There's a snake in my oracle"

*ducks


Reply With Quote
  #10  
Old   
joel garry
 
Posts: n/a

Default Re: help me pick a name for my project! - 05-14-2008 , 12:54 PM



On May 13, 10:14*pm, m... (AT) pixar (DOT) com wrote:
Quote:
So, we've got a nice program that will introspect
a PL/SQL package and generate python interface for
it. It's nice, because we can provide an interface to
the database that looks like a standard python
package, for those of our colleagues who don't
care about databases.

I've gotten approval to release the code, but I'm
stuck for a name. *It's currently called cx_autogen,
because around here Oracle and cx_Oracle are pretty
synonymous.

But, I'd like a name that

- doesn't impose on Computronix and cx_Oracle
- gives some idea as to what the program does
- is somewhat memorable

So, if you have some ideas I'd appreciate hearing
your suggestions. *By way of thanks, if your suggestion
gets picked, I'll (a) mention your name in the
README -- eternal open source fame!, and (b) send
you a piece of Wall-E or Ratatouille swag.

I'd like to release this next week, so if you can send
me any suggestions by the end of this week that
would be great.

Thanks!
Mark

PS, *To give you a flavor of what the program does,
if you have a package like this:

* * create or replace package keyword
* * as
* * * * type my_ref is ref cursor;
* * * * procedure add(aid in number, akeyword in varchar2);
* * * * procedure delet(aid in number, akeyword in varchar2);
* * * * procedure get_ids(aref out sys_refcursor, akeyword in varchar2);
* * * * procedure get_keywords(aref out sys_refcursor, aid in number);
* * * * function get_keywords2(aid in number) return my_ref;
* * * * function all_words return my_ref;
* * end keyword;

It will give you a Python class that looks something
like this:

* * class Keyword:
* * * * def __init__(self,curs):
* * * * def add(self,aid,akeyword):
* * * * def all_words(self):
* * * * def delet(self,aid,akeyword):
* * * * def get_ids(self,aref,akeyword):
* * * * def get_keywords(self,aref,aid):
* * * * def get_keywords2(self,aid):

which you can use like this:

* * import keyword
* * k=keyword.Keyword(mycursor)

* * # add 'final' keyword to asset 23
* * k.add(23,'final')

* * # iterate over all the keywords for asset 23
* * # using a ref cursor
* * for x in k.get_keywords2(23):
* * * * print x

PPS, for everyone who helped me with my tedious questions
regarding querying the data dictionary, this is the fruits
of that work. *many thanks!!

--
Mark Harrison
Pixar Animation Studios
Oh, this is fun!

How about:

Pygestion
PygSqueal
SnakeBulge
PL/Python
Pyrospection

jg
--
@home.com is bogus.
oww! hey, stop poking me with that stick.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.