Script Lua whith SQLite

Hi for all, i try connect my script to my sqlite.db but i have to much problems e try to much codes and i try post my problem.

my codes:
local sqlite3 = require("cfx-server-data-master/tableusers.db")

	local db = sqlite3.open("../tableusers.db")
	for row in db:rows("SELECT * FROM users WHERE id='".. player .."';") do
		return row["bankbalance"]
	end

	db:close()

** and on try first “require” say this error: attempt to call a nil value (global ‘require’)

Thanks all and sorry for my bad english

Just to hint, require doesn’t exist anymore, as hinted in the Porting Notes section:
https://wiki.fivem.net/wiki/Running_FXServer#Porting_Notes

yep… i try this now: server_script “@…/lsqlite3/lsqlite3.c” but dont work i dont know if i do somthing worong…