<p>Interesting. So it seems this is a bug with how psycopg2 creates SQL. Perhaps I'll search around on that. Thanks for everyone's help!</p>
<div class="gmail_quote">> Hi,<br>> <br>> On Sun, Oct 3, 2010 at 3:25 AM, Rory Brown <<a href="mailto:gozargozarian@gmail.com">gozargozarian@gmail.com</a>> wrote:<br>>> I am having an issue starting out with Storm and PostgreSQL. I have a<br>
>> simple table called "Users" in the database and have defined my class to<br>>> have _storm_table_ = "Users". But, when I attempt to use the class, as it<br>>> used to work in MySQL, I get the error: ProgrammingError: relation "users"<br>
>> does not exist. It has made my Users table smallcase. How do I fix that?<br>>> What did I do wrong? Used to work fine with MySQL and same case, names, and<br>>> data.<br>> <br>> It looks like you're experiencing this issue:<br>
> <br>> <a href="http://stackoverflow.com/questions/2774406/psycopg2-doesnt-like-table-names-that-start-with-a-lower-case-letter">http://stackoverflow.com/questions/2774406/psycopg2-doesnt-like-table-names-that-start-with-a-lower-case-letter</a><br>
> <br>> You could try:<br>> <br>> __storm_table__ = '"Users"'<br>> <br>> I'm not sure if it'll actually work, but it might.<br>> <br>> Thanks,<br>> J.<br></div>