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

Dim sqlString As String	

	sqlString = "INSERT INTO people(name,email) values('" & strName & "','" & strEmail & "')"
	Call sqlConnection.Execute(sqlString)

Return