Russell Keith-Magee wrote:
> On 7/3/07, adm <[EMAIL PROTECTED]> wrote:
>> Russ,
>>       I sure can try that. The problem is I haven't gone through the
>> Django framework in details as such, which make me quite helpless
>> while adding the support.
> 
> Thats fine. However, as fair warning - this is the first time that
> Sybase support has been requested (compared to the regular requests
> for MS SQL Server support), so I wouldn't expect to see Sybase support
> any time soon.

You guys are in luck - Sybase and MS are the 'same'- MS bought a copy of Sybase

http://pymssql.sf.net  uses http://www.freetds.org

"FreeTDS is a set of libraries for Unix and Linux that allows your programs to 
natively talk to Microsoft SQL Server and Sybase databases."

btw - in case you find this
http://www.object-craft.com.au/projects/mssql
There is a 2nd module that seems way out of date.

>> And that is becuase I am not proficient in Python. All I expect is
>> there will be some wrapper classes for databsae interface, under which
>> for perticular instance ( for a databse) implementation classes will
>> be provided. Am I correct in this assumption?

I took a quick look at the code. "looks pretty easy" so give it a shot, and 
post 
  any questions - good chance I can help.

here is some code using some queries you will probably need

                 tempCursor.execute("select table_name"
                         " from INFORMATION_SCHEMA.TABLES"
                         " where table_catalog = %(db)s"
                         " and table_type = 'BASE TABLE'"
                         " order by table_name",
                          {'db':dbName} )

                   tempCursor.execute(
                         "select COLUMN_NAME, DATA_TYPE"
                         " from INFORMATION_SCHEMA.COLUMNS"
                         " where table_catalog = %(db)s"
                         " and table_name = %(table)s"
                         " order by ORDINAL_POSITION",
                          {'table':tableName, 'db':dbName} )
Carl K

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to