Rethinking the Model of Go Basic Learning Record-Writing Web Application-Blog Editing Function

Every time I put my practice code on github and typed a tag, which is convenient for the students to use later. Here I share my practice with the code of the following branches. https://github.com/durban89/typescript_demo.git tag: 1.1.2 Last article[ Go Basic Learning Record - Writing Web Application - Blog Editor Perfect Update Function ] In t ...

Posted by pluto on Thu, 31 Jan 2019 20:15:15 -0800

Use the reset API of SQLite correctly

The reset interface of the SQLite database means that it resets the state object of the SQLite to its initial state and can be executed again by the bytecode virtual machine of the SQLite. The reset interface does not change the value of the state object binding. The reset interface can be called before or after the step interfa ...

Posted by lesmckeown on Sun, 27 Jan 2019 20:48:14 -0800

Intertransformation between [QT]QByteArray and char, int, float (and their arrays)

Original articles are welcome to be reproduced. Reproduced please note: reproduced from uuuuuuuuuuuu Xiangxiang's blog Links to the original text: https://blog.csdn.net/humanking7/article/details/80913474 1. Sources of the problem 2. Conversion between QByteArray and char* 2.1 QByteArray to char* Mode 1 data() and siz ...

Posted by brax23 on Tue, 01 Jan 2019 13:39:09 -0800

Open source recompilation System.Data.SQLite.dll adaptive x86 x64 AnyCPU recompilation

Background: > System. Data. SQLite. DLL assembly does not support AngCPU format well   System.Data.SQLite.dll has three schemes to adapt to x86 and x64: Use 32 or 64 hybrid compiled assemblies (programs run in 64 bits, but references to 32-bit assemblies cause errors, and vice versa) -- so this scheme is very disgusting. Assemblies usin ...

Posted by Gho on Tue, 01 Jan 2019 00:03:08 -0800

Python Connecting to SQL Server Database - Pythmssql Usage Base

install pip install pymssql Connect to the database The way pymssql connects databases and uses sqlite is basically the same: Creating Connection Objects with connect connect.cursor creates cursor objects, and the execution of SQL statements is basically done on the cursor. The cursor.executeXXX method executes the SQL statement, ...

Posted by NZ_Kiwi on Tue, 25 Dec 2018 12:30:06 -0800