TABLE "people" structure:
id = identifier
name = textfield
email = textfield
active = int

Dim sqlString As String	

	sqlString = "INSERT INTO people select '" & strName & "','" & strEmail & "',1"
	Call sqlConnection.Execute(sqlString)

Return