[sqlalchemy] RE: 'Hand Coded Applications with SQLAlchemy' video

2012-11-30 Thread Kent Tenney
Howdy,

I'm a Python programmer setting out to put a bunch of stuff into
a Postgres db, studying the video for direction.

I wonder if any of the practices described have changed
substantially since it was recorded.

Just checked and found it's from Pycon 2012, so probably not,
though SA seems to evolve quickly, I'm using trunk.

Thanks,
Kent

-- 
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.



[sqlalchemy] alembic handles no primary key table

2012-11-30 Thread junepeach
I know it is not good idea that there is no primary key in a table. But if some 
people just want to design a table like that, how can alembic tool handle that? 
It seems Alembic doesn't allow to create a non-primary key table. 

Thanks  a lot and have a good weekend!

-- 
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sqlalchemy/-/2mhwclgLq5gJ.
To post to this group, send email to sqlalchemy@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.



Re: [sqlalchemy] alembic handles no primary key table

2012-11-30 Thread Michael Bayer

On Nov 30, 2012, at 5:13 PM, junepeach wrote:

 I know it is not good idea that there is no primary key in a table. But if 
 some people just want to design a table like that, how can alembic tool 
 handle that? It seems Alembic doesn't allow to create a non-primary key 
 table. 
 
 Thanks  a lot and have a good weekend!

alembic has no dependency on primary key columns (need detail on it seems).   
the SQLAlchemy ORM does, but that's a different issue.


-- 
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.



Re: [sqlalchemy] RE: 'Hand Coded Applications with SQLAlchemy' video

2012-11-30 Thread Michael Bayer

On Nov 30, 2012, at 10:50 AM, Kent Tenney wrote:

 Howdy,
 
 I'm a Python programmer setting out to put a bunch of stuff into
 a Postgres db, studying the video for direction.
 
 I wonder if any of the practices described have changed
 substantially since it was recorded.
 
 Just checked and found it's from Pycon 2012, so probably not,
 though SA seems to evolve quickly, I'm using trunk.

that's a pretty recent talk so you should be OK.


-- 
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.