Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (degenerate_762), 1,114 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
Lite-C A8 and Mysql Connection. How? #401574
05/21/12 20:03
05/21/12 20:03
Joined: Nov 2007
Posts: 318
Brasil, Paraná
NeoNeper Offline OP
Senior Member
NeoNeper  Offline OP
Senior Member

Joined: Nov 2007
Posts: 318
Brasil, Paraná
Please, someone knows a way to interact Lite-C of the version A8 with Mysql?

Previously there was a DLL that I used to interact the C-Script with Mysql, but I do not know if there is this same dll for the Lite-C.!

Thank you from all already.! |o|


Please! Use easy words to be translated. because my English is not very good! Grateful.
_______________________________________________________
Re: Lite-C A8 and Mysql Connection. How? [Re: NeoNeper] #401575
05/21/12 20:05
05/21/12 20:05
Joined: Mar 2008
Posts: 2,247
Baden Württemberg, Germany
Espér Offline
Expert
Espér  Offline
Expert

Joined: Mar 2008
Posts: 2,247
Baden Württemberg, Germany
i´m interacting with my database via http_post and a php file that is connected to my database...


Selling my Acknex Engine Editions (A7 Com & A8 Pro):
>> click here if you are interested <<
Re: Lite-C A8 and Mysql Connection. How? [Re: Espér] #401576
05/21/12 20:36
05/21/12 20:36
Joined: Nov 2007
Posts: 318
Brasil, Paraná
NeoNeper Offline OP
Senior Member
NeoNeper  Offline OP
Senior Member

Joined: Nov 2007
Posts: 318
Brasil, Paraná
really! this possibility exists.
But I would like to connect directly to my Mysql Database.

Using direct communication with MySQL DB, I do not need an intermediary between the client and the DB.

we will thus gain in performance and speed of data transfer


Please! Use easy words to be translated. because my English is not very good! Grateful.
_______________________________________________________
Re: Lite-C A8 and Mysql Connection. How? [Re: NeoNeper] #401577
05/21/12 20:40
05/21/12 20:40
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
but you will have a huge security problem wink

Re: Lite-C A8 and Mysql Connection. How? [Re: Rei_Ayanami] #401591
05/22/12 07:20
05/22/12 07:20
Joined: Dec 2003
Posts: 1,225
germany
gri Offline
Serious User
Happy Birthday gri  Offline
Serious User

Joined: Dec 2003
Posts: 1,225
germany
do xou use it local or for online stuff?

@rei: wich security problem?


"Make a great game or kill it early" (Bruce Shelley, Ensemble Studios)
Re: Lite-C A8 and Mysql Connection. How? [Re: gri] #401594
05/22/12 08:26
05/22/12 08:26
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
When it is on online database, everyone will be able to get the password/username of it, when you are sending it. Thus everyone can modify/delete your database.

A good example was Super Meatboy, which did directly connect and was hacked because of this.

Re: Lite-C A8 and Mysql Connection. How? [Re: Rei_Ayanami] #401595
05/22/12 09:01
05/22/12 09:01
Joined: Dec 2003
Posts: 1,225
germany
gri Offline
Serious User
Happy Birthday gri  Offline
Serious User

Joined: Dec 2003
Posts: 1,225
germany
Originally Posted By: Rei_Ayanami
When it is on online database, everyone will be able to get the password/username of it, when you are sending it. Thus everyone can modify/delete your database.

A good example was Super Meatboy, which did directly connect and was hacked because of this.


Who to hell send name/pw via url or http header? that would be real stupid application design. As I read about your security concerns I thought about security leaks in mysql itself.


"Make a great game or kill it early" (Bruce Shelley, Ensemble Studios)
Re: Lite-C A8 and Mysql Connection. How? [Re: gri] #401608
05/22/12 16:45
05/22/12 16:45
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
The OP does not want to connect through a web-interface, thus he has to sent the username and password to the database directly. (You may obfuscate this a bit, however)

Re: Lite-C A8 and Mysql Connection. How? [Re: Rei_Ayanami] #401908
05/25/12 19:01
05/25/12 19:01
Joined: Nov 2007
Posts: 318
Brasil, Paraná
NeoNeper Offline OP
Senior Member
NeoNeper  Offline OP
Senior Member

Joined: Nov 2007
Posts: 318
Brasil, Paraná
Hello friends. I spent these days trying to figure out a way to connect to Mysql 3dgs A8, but it still fails.
There is currently no solution to this problem?


Please! Use easy words to be translated. because my English is not very good! Grateful.
_______________________________________________________
Re: Lite-C A8 and Mysql Connection. How? [Re: NeoNeper] #401909
05/25/12 19:18
05/25/12 19:18
Joined: Apr 2007
Posts: 3,751
Canada
WretchedSid Offline
Expert
WretchedSid  Offline
Expert

Joined: Apr 2007
Posts: 3,751
Canada
There is. You can use the MySQL dll directly (be sure to know about the licensing issues) and use the LoadLibrary() and GetProcAddress() WinAPI functions for dynamically loading the library and the exported functions.
Or you use HTTPS(!) and connect to your webservice which then does the needed transactions (which is preferred for the already a hundred times mentioned security issues)


Shitlord by trade and passion. Graphics programmer at Laminar Research.
I write blog posts at feresignum.com
Page 1 of 2 1 2

Moderated by  aztec, Blink, HeelX 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1