On 12/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Can you use real numbers and date into SQL Alchemy database?

In a word: yes. For real numbers, you'd use the Float() column type,
and for dates, you'd use the Date() column type. (Or the DateTime()
column type if you wanted both a date and time value).

http://www.sqlalchemy.org/docs/types.myt has a list of the basic data
types available, and an example of how to write your own types should
one of those not be sufficient.

http://www.sqlalchemy.org/docs/metadata.myt shows how to declare a table.

Hopefully this will answer your question.

-- 
Robin Munn
[EMAIL PROTECTED]
GPG key 0x4543D577

--~--~---------~--~----~------------~-------~--~----~
 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to