FX Experience Has Gone Read-Only

I've been maintaining FX Experience for a really long time now, and I love who enjoy my weekly links roundup. One thing I've noticed recently is that maintaining two sites (FX Experience and JonathanGiles.net) takes more time than ideal, and splits the audience up. Therefore, FX Experience will become read-only for new blog posts, but weekly posts will continue to be published on JonathanGiles.net. If you follow @FXExperience on Twitter, I suggest you also follow @JonathanGiles. This is not the end - just a consolidation of my online presence to make my life a little easier!

tl;dr: Follow me on Twitter and check for the latest news on JonathanGiles.net.

Sqlite Autocad Jun 2026

;; Create table in AutoCAD (command "_.TABLE" "10,10" "20,15") (foreach row result (command (itoa (car row)) (rtos (cadr row) 2 2) (caddr row)) ) (sqlite:close db) (princ) )

// Create a table using (SQLiteCommand cmd = new SQLiteCommand(@" CREATE TABLE IF NOT EXISTS mytable ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, value REAL NOT NULL )", conn)) sqlite autocad

conn.Open();

This approach gives you flexible reporting from SQLite directly within AutoCAD, whether you need simple data extraction or complex formatted reports with calculations and summaries. ;; Create table in AutoCAD (command "_

create_autocad_report("project_data.db", "SELECT * FROM blocks WHERE layer='FloorPlan'") name TEXT NOT NULL

# Connect to AutoCAD acad = Autocad(create_if_not_exists=True)