Skip to content

Instantly share code, notes, and snippets.

View craftsmanship's full-sized avatar

craftsmanship

  • japan
  • 02:55 (UTC +09:00)
View GitHub Profile
@craftsmanship
craftsmanship / generate-test-data-sql.lisp
Last active April 5, 2023 01:47
Test data (Insert statement) generator for RDBMS. Depends on my another gist https://gist.github.com/craftsmanship/eb49e6342104dbc3e7bb5fced5412669.
(in-package :cl-user)
(ql:quickload :iterate)
(ql:quickload :cl-ppcre)
;;; https://gist.github.com/craftsmanship/eb49e6342104dbc3e7bb5fced5412669
(load "mssql-client.lisp")
(defpackage generate-test-data-sql
#+ccl (:use :cl :ccl)
#+sbcl (:use :cl)
@craftsmanship
craftsmanship / mssql-client.lisp
Last active October 27, 2023 08:33
RDBMS Client (DML only) for Microsoft SQL Server
(in-package :cl-user)
(ql:quickload :mssql)
(ql:quickload :cl-ppcre)
(ql:quickload :uiop)
(ql:quickload :string-case)
(ql:quickload :iterate)
(ql:quickload :anaphora)
(ql:quickload :alexandria)
(ql:quickload :local-time)