溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

django中使用原生SQL語句

發(fā)布時間:2020-07-15 14:53:50 來源:網(wǎng)絡(luò) 閱讀:530 作者:AlunE 欄目:編程語言

views中代碼;

# 有多個數(shù)據(jù)庫時
from django.db import connections

# 傳入游標(biāo),得到字典結(jié)果集
def dictfetchall(cursor):
    "將游標(biāo)返回的結(jié)果保存到一個字典對象中"
    desc = cursor.description
    return [
    dict(zip([col[0] for col in desc], row))
    for row in cursor.fetchall()
    ]

def seldata(request):
        sql ="SELECT TOP 100 * FROM EwData"
        conn = connections['MyDB']          #連接的數(shù)據(jù)庫
        cur = conn.cursor()                  #連接游標(biāo)
        cur.execute(sql)                    #執(zhí)行SQL語名
        data = dictfetchall(cur)               #把結(jié)果用字典返回
        return render(request, 'ewdata.html', {'ew': data,'fcol':data[0]})

html代碼:

<table class="gridtable">
            <tr>
               {% for k in fcol %}
                    <th>{{ k }}</th>
                {% endfor %}
            </tr>
                {% for i in ew %}
                    <tr>
                                        {#  根據(jù)SQL中的字段名顯示數(shù)據(jù) #}
                    <td>{{ i.McNo }}</td>
                    <td>{{ i.SN }}</td>
                    <td>{{ i.Model }}</td>
                    <td>{{ i.Block }}</td>
                    <td>{{ i.Floor }}</td>
                    <td>{{ i.Line }}</td>
                    <td>{{ i.Wight }}</td>
                    <td>{{ i.TestTime }}</td>
                    <td>{{ i.Abortive }}</td>
                    <td>{{ i.Checker }}</td>
                    <td>{{ i.Multiple }}</td>
                    <td>{{ i.PackSN }}</td>
                    </tr>
                {% endfor %}
        </table>
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI