FOROS PROFESIONALES
WINDEV
,
WEBDEV
y
WINDEV Mobile
Inicio
|
Mensajes recientes
|
Conéctese...
|
Desconnectar
|
Español
Inicio
→
WINDEV Mobile 2024
→
Use SQL statements in WinDev Mobile 21
Use SQL statements in WinDev Mobile 21
Iniciado por JAMESGOT, 10,oct. 2022 06:35 - 1 respuesta
Conéctese…
JAMESGOT
#1
Miembro registrado
1 mensaje
Publicado el 10,octubre 2022 - 06:35
I'm developing an Android app with a SQLite database in WM21 but I can't find the way to execute SQL statements like ALTER TABLE.
Query editor don't suport this kind of statements, function HExecuteSQLQuery() declares this query to the HFSQL engine and fails, and SQLExec() doesn't work because SQLConnect() isn't avaliable in Android.
Exists any way to do this with WM21?
Informar
0
0
Merijn
#2
Publicado el 10,octubre 2022 - 11:15
Hi JamesGot,
ctDB
is
C
onnection
s
SQL
is string
b
Modify
is boolean
dsChange
is Data Source
b
Open
is boolean
ctDB
..
Provider
=
hNativeAccessSQLite
ctDB
..
Access
=
hOReadWrite
ctDB
..
Source
=
fDataDir
+ [
fSep
] +
"Your.db"
ctDB
..
Server
=
fDataDir
+ [
fSep
] +
"Your.db"
// user, pwd, etc
IF
HOpenConnection
(
ctDB
)
THEN
IF
HChangeConnection
(
"*"
,
ctDB
)
THEN
b
Open
=
True
ELSE
Error
(
"Fiddle database"
+
RC
+
HErrorInfo
(
)
)
END
ELSE
Error
(
"Open database"
+
RC
+
HErrorInfo
(
hErrFullDetails
)
)
END
IF
b
Open
THEN
s
SQL
=
"ALTER TABLE tablename ADD NewField FieldType"
IF
NOT
HExecuteSQLQuery
(
dsChange
,
ctDB
,
hQueryWithoutCorrection
,
s
SQL
)
THEN
Error
(
HErrorInfo
(
)
)
END
END
Hope this helps,
MerijnW
Informar
0
0
→ Volver a WINDEV Mobile 2024
WINDEV 2024
WEBDEV 2024
WINDEV 26
WINDEV 2024
WINDEV 2024
WINDEV 2024
WINDEV 25
WEBDEV 2024
WEBDEV 2024
WEBDEV 2024
WINDEV Mobile 2024
WINDEV Mobile 2024
WINDEV Mobile 2024
WINDEV (versiones precedentes)
WINDEV (versiones precedentes)
WINDEV (versiones precedentes)
WEBDEV (versiones precedentes)
WINDEV Mobile (versiones precedentes)
Reports & Queries
Irrelevante
Herramientas
Français
English
Español
Portuguesa
Fermer cette fenêtre
Búsqueda Tipo
Sólo temas
Todos los mensajes
Periodo Buscar
Cualquier fecha
Última hora
Última 24 horas
Última semana
Último mes
Último año
Cancelar
Vista previa del mensaje
Añadiendo una imagen
Importar una imagen desde una URL
Enviar una imagen desde un archivo de su disco
Arrastrar un archivo o click en "Examinar..."
o
Cancelar
0%
WLanguage
SQL
XML, HTML
JAVA, Javascript
Texto