1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Fix incorrect registered function in SQLite module.

This commit is contained in:
Sandu Liviu Catalin 2016-07-17 16:34:28 +03:00
parent 67e2ba9107
commit cc04ff2bfc

View File

@ -523,7 +523,7 @@ void Register_Column(Table & sqlns)
.Prop(_SC("IsValid"), &Column::IsValid)
.Prop(_SC("References"), &Column::GetRefCount)
.Prop(_SC("Index"), &Column::GetIndex)
.Prop(_SC("Statement"), &Column::GetNumber)
.Prop(_SC("Statement"), &Column::GetStatement)
.Prop(_SC("Connection"), &Column::GetConnection)
.Prop(_SC("IsNull"), &Column::IsNull)
.Prop(_SC("Name"), &Column::GetName)