Tagged Questions
0
votes
1answer
61 views
I can't select query tables in mysql, but only with certain names
I have a couple tables in a database named 19efdf22eeefaa6dc322be094bb2da475d4d457c and 8e0b5a906b375bc5f6c44ca4274d7374ea43435a.
When I run the code
SELECT *
FROM table_name
ORDER BY name ASC
...
0
votes
1answer
34 views
Effectively use query results using web.py
I am using web.py for managing my web application and using MySQL as the database. I make a raw query and get the results and i convert it to a list and iterate over it. I need to push the retrieved ...
0
votes
1answer
42 views
Using web.py's web.database with MyISAM
I have a web.py app that's using web.database for its DB work. It's running on a low-powered VPS, so I turned off InnoDB to save resources. However, when I try to access the database, I get this ...
1
vote
0answers
228 views
How to configure webpy and MySQL on OpenShift
I want to know how to deploy webpy to-do example on openshift. Here is an official webpy example showing how to deploy a webpy app on openshift, but this example does not deal with mysql. Can anyone ...
1
vote
1answer
161 views
Web.py db.insert() does not insert the row
I am using Web.py 0.37, and trying to add a row to my mysql database. Here is my code:
com.globals.db.insert('users', email=data.email, fullname=data.fullname, password=pwh, _test=False)
And this ...
1
vote
2answers
123 views
How portable (or not) is using SQLLiteral(“NOW()”) in web.py DB INSERTs?
I know this works fine if my database is MySQL. And maybe others.
seq_id = db.insert('mytable', first="Bob",last="Smith",joined=web.SQLLiteral("NOW()"))
Well, right now, the database customers will ...
0
votes
2answers
1k views
How to check if sql query result is empty in web.py/python
I'm working on a web application in the web.py framework and need a way for web.py/python to check if the result of a sql query is empty.
Here's my current function:
def get_hours():
result = ...
1
vote
2answers
160 views
MySQL Not Properly Storing Ciphertext Produced from the PyCrypto Library
I'm building an application in web.py, but am having some trouble when it comes to storing encrypted data in MySQL.
PyCrypto creates cypher text that looks ...
1
vote
1answer
187 views
Issue in webpy db select query
In webpy db module I have a query:
db().query("select * from table where column in ($ERROR_LIST)",
vars=dict(ERROR_LIST=ERROR_LIST)).list()
There is no issue with this query if the ERROR_LIST ...
1
vote
2answers
218 views
Trying to make a login script with web.py
I'm trying to make a login script with web.py but i cant seem to figure it out!
I'm using MySQLdb for the database engine.
Here are the two approaches I have but neither seem to be working. if ...
0
votes
1answer
66 views
How to stop SQL replies to commands in Python Shell
I've Googled this question in a dozen different ways and can find no joy. I think I'm asking the wrong question or using the wrong words.
I'm making MySQL entries and queries from a Python script on ...
1
vote
1answer
72 views
Implementing “is open now” filter for the list of venues in web app
I need to implement "is open now" filter for my website that lists venues, but I don't know where to start. My website is implemented using Python, webpy, MySQL database.
I have to store the opening ...
0
votes
2answers
281 views
web.py db.insert function throw error : <type 'exceptions.TypeError'> : 'long' object is unsubscriptable
I have a database(mysql) table named foo, and its primary key is bigint type, and auto increment,
I write the following codes to insert a record and get the record's primary key
q = db.insert('foo', ...
0
votes
2answers
849 views
How to format a MySQL query into JSON using webpy?
I am trying to query a MySQL database using webpy. From the SQL query, I get the following.
<Storage {'title': u'Learn web.py', 'done': 0, 'id': 0L, 'mytime': datetime.datetime(2011, 5, 30, 10, ...
0
votes
1answer
677 views
web.py connect to mysql error
when i use web.py to connect local mysql, some error show:
Traceback (most recent call last):
File "code.py", line 7, in <module>
db = ...
0
votes
1answer
752 views
MySQL server has gone away
I've recently moved from my local web.py/apache setup to a shared host
and I'm trying to match my home configuration. One issue that is
popping up is an OperationalError "MySQL server has gone away".
...
0
votes
1answer
421 views
What Amazon AWS AMI for web.py, mysql
I am working a web.py app for realtime ad tracking and performance advertising and I am trying to deploy it on Amazon AWS. I know nothing about linux or servers or anything and typically just do ...
4
votes
2answers
1k views
Random name generator strategy - help me improve it
I have a small project I am doing in Python using web.py. It's a name generator, using 4 "parts" of a name (firstname, middlename, anothername, surname). Each part of the name is a collection of ...