Displaying 3 results from an estimated 3 matches for "somedb".
Did you mean:
somebb
2006 Jan 12
0
Sending commands to Asterisk via FastAGI
...agi python script that reads some numbers from MySQL, and then instructs asterisk to try those numbers in sequential order.
ie:
def run(self):
agi = AGI(self.client)
db = MySQLdb.connect(host="192.168.10.15",user="user",passwd="password",db="somedb")
c = db.cursor()
c.execute("""Select * from ast_dp""")
data = c.fetchall()
for i in data:
str = "EXEC " + i[4] + " \"" +i[5] + "/" + i[6] + "|" + i[7] + "\"...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...er.session.data_dir = %(here)s/data/sessions
+# Specify the database for SQLAlchemy to use via
+# turbogears.database
+# %(here) may include a ':' character on Windows environments; this can
+# invalidate the URI when specifying a SQLite db via path name
+sqlalchemy.url = sqlite:///%(here)s/somedb.db
+sqlalchemy.echo = False
+
+# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
+# Debug mode will enable the interactive debugging tool, allowing ANYONE to
+# execute malicious code after an exception is raised.
+#set debug = false
+
+# Logging configuration
+# Add addit...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...er.session.data_dir = %(here)s/data/sessions
-# Specify the database for SQLAlchemy to use via
-# turbogears.database
-# %(here) may include a ':' character on Windows environments; this can
-# invalidate the URI when specifying a SQLite db via path name
-sqlalchemy.url = sqlite:///%(here)s/somedb.db
-sqlalchemy.echo = False
-
-# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
-# Debug mode will enable the interactive debugging tool, allowing ANYONE to
-# execute malicious code after an exception is raised.
-#set debug = false
-
-# Logging configuration
-# Add addit...