Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

python - How do I add an additional entry in SQL Server from Flask?

Hello I am unable to add new entries into my Microsoft SQL database through flask. I have made sure that the connection is working by retrieving entries from the database and displaying them on the page. I have tried many different codes but none of them seems to work. Help!

@app.route('/message', methods=["POST"])
def message():
    try:
        username = request.form.get('username')
        message = request.form.get('message')
        #print(username)
        #print(message)
        

        pusher_client.trigger('chat-channel', 'new-message', {'username' : username, 'message': message})

        insert_query = '''INSERT INTO dbo.Bin (RequestNumber, Request) VALUES(?, ?);'''
        values = (10, message)
        cursor.execute(insert_query, values)
        
        conn.commit()
        
        return jsonify({'result' : 'success'})
    except:
        return jsonify({'result' : 'failure'})
        
    
    
    
    
    return ' '

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...