Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python sqlite select column name

import sqlite3
con = sqlite3.connect("users.db")
con.row_factory = sqlite3.Row  # <-- This line does the trick.
Source by www.adamsmith.haus #
 
PREVIOUS NEXT
Tagged: #python #sqlite #select #column
ADD COMMENT
Topic
Name
8+3 =