SqlLite OR MySql
SqlLite OR MySql
Hi Antônio,
I would like to develop an app that can work with these two databases. Do you know if is possible to use both with the same code? only changing the initial connection?
I'm not intended use both at the same time, but some users want or need SqlLite and other choose to use Mysql.
Is it possible ? how?
I would like to develop an app that can work with these two databases. Do you know if is possible to use both with the same code? only changing the initial connection?
I'm not intended use both at the same time, but some users want or need SqlLite and other choose to use Mysql.
Is it possible ? how?
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: SqlLite OR MySql
Vilian,
Do you mean using FiveTouch or FWH ?
Do you mean using FiveTouch or FWH ?
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: SqlLite OR MySql
Vilian,
You have to use a Web service so you can manage any database engine
http://forums.fivetechsupport.com/viewt ... 21&start=0
You have to use a Web service so you can manage any database engine
http://forums.fivetechsupport.com/viewt ... 21&start=0
Re: SqlLite OR MySql
Antônio,
Do I must to do the server of webservice?
I was thinking that SqlLite is the internal database of Android, isn't it ? How to do a webservice for it?
Do I must to do the server of webservice?
I was thinking that SqlLite is the internal database of Android, isn't it ? How to do a webservice for it?
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: SqlLite OR MySql
QT provides support for SqlLite (FiveTouch uses QT):
https://katecpp.wordpress.com/2015/08/2 ... e-with-qt/
https://katecpp.wordpress.com/2015/08/2 ... e-with-qt/
Re: SqlLite OR MySql
But Can I use the same way to use MySql ?
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: SqlLite OR MySql
Antônio,
I believe it's that I want, but I don't how to use this code in Fivetouch ! I have tried by this way, but don't worked !
I believe it's that I want, but I don't how to use this code in Fivetouch ! I have tried by this way, but don't worked !
But, when I try run the app, is shown a message of Undefined Function QSQLDATABASE. Could you help me ?#include "FiveTouch.ch"
function Main()
LOCAL oBD
oDB := QSqlDatabase()
oDB:addDatabase("QMYSQL")
oDB:setHostName("10.10.1.1")
oDB:setDatabaseName("fox_sgv")
oDB:setUserName("root")
oDB:setPassword("Xxxx")
oDB:open()
RETURN NIL
Re: SqlLite OR MySql
Your code is correct, but
Para que este código compile bien, es necesario que se añada el módulo sql al proyecto, es decir al fichero *.pro con la linea:
QT+=sql
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: SqlLite OR MySql
In my directory of Fivetouch there are no files *.pro
Re: SqlLite OR MySql
You do not have/use the project fivetouch.pro?
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: SqlLite OR MySql
No,
I'm using Fivetouch Version that Antônio has published here http://forums.fivetechsupport.com/viewt ... 32&t=35529
I'm using Fivetouch Version that Antônio has published here http://forums.fivetechsupport.com/viewt ... 32&t=35529
Re: SqlLite OR MySql
Folder Windows, not?vilian wrote:No,
I'm using Fivetouch Version that Antônio has published here http://forums.fivetechsupport.com/viewt ... 32&t=35529
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: SqlLite OR MySql
This is evertyhing I have in Fivetouch directory: