Page 2 of 3

Re: FWH 17.03 : MYSQL Embedded Server

PostPosted: Mon Mar 20, 2017 5:57 pm
by nageswaragunupudi
You can consider MySql or MariaDB. Both work identically and our software works on both.

Re: FWH 17.03 : MYSQL Embedded Server

PostPosted: Mon Mar 20, 2017 6:18 pm
by Enrico Maria Giordano
TimStone wrote:We have had the discussion here many times on this forum. My belief is that we will see more capabilities for FWH as Windows continues to evolve, and they will be most easily used when building with MSVC++. Since Community 2015 / 2017 is FREE, I'm often puzzled when people revert to older technologies.


Borland compiler are not "older technologies". At least, MSVC is of 2015 while latest Borland/Embarcadero is of 2016. What is really older techology is SQL... :-(

EMG

Re: FWH 17.03 : MYSQL Embedded Server

PostPosted: Mon Mar 20, 2017 6:33 pm
by TimStone
MSVC is actually 2017 ...

I took my application using 2017, did a "clean" in Visual Studio and rebuilt it ... and it worked.

Also, MSVC 2015 was actually updated all through 2016. They never stopped and some were major. So Visual Studio 2015 Community actually received updates through the end of 2016 and even early 2017 until the launch of 2017 a couple of weeks ago.

I've been using that version now for several years, in FULL distribution to my clients, and it works flawlessly.

Tim

Re: FWH 17.03 : MYSQL Embedded Server

PostPosted: Mon Mar 20, 2017 6:45 pm
by Enrico Maria Giordano
I'm not saying anything against MSVC. I'm only saying that Borland/Embarcadero compilers are not "older technology".

EMG

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Wed Mar 22, 2017 2:17 pm
by Sistem
Image

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Wed Mar 22, 2017 3:00 pm
by nageswaragunupudi
Can not see the image

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Tue Aug 01, 2017 5:30 pm
by nageswaragunupudi
You can download sample of embedded server from here

http://anserkk.com/gnraomysql/view.php?id=15

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Sat Aug 04, 2018 4:05 am
by fraxzi
Hi All,

I would like to try and test MySQL/MariaDB embedded Server ... where can I start (with Sample)?

:?:

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Sat Aug 04, 2018 4:10 am
by nageswaragunupudi
fwh\samples\mysqlmbd.prg

Note: First read the program and also my first post in this thread.

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Sat Aug 04, 2018 7:16 am
by fraxzi
nageswaragunupudi wrote:fwh\samples\mysqlmbd.prg

Note: First read the program and also my first post in this thread.



Thanks Mr. Rao,

When I run the sample, I have missing file "libmysqld.dll" ... not found in FWH directory.

:wink:

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Sat Aug 04, 2018 7:21 am
by nageswaragunupudi
You need to find and download the dll yourself. Please read the instructions in my first post of this thread.

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Sat Aug 04, 2018 7:52 am
by fraxzi
nageswaragunupudi wrote:You need to find and download the dll yourself. Please read the instructions in my first post of this thread.



Mr. Rao,

This maybe the reason I couldn't find any download ...
https://mysqlserverteam.com/mysql-8-0-retiring-support-for-libmysqld/

:cry:

Re: FWH 17.03 : MYSQL Embedded Server

PostPosted: Sun Aug 05, 2018 1:59 pm
by dutch
Dear Mr.Rao,

nageswaragunupudi wrote:Update:

In our tests it is possible to connect to both embedded server and also any number of main servers in the same application.
Requirements:
1) Link with libmysqld.lib instead of libmysql.lib
2) Connect to a local embedded server first before connecting to any remote server.

We welcome testing by users and feed back.


To use embedded server and remote server in the same application. I need to link libmysqld.lib and libmysqld.dll instead fo LIBMYSQL.LIB and LIBMYSQL.DLL.

Does It mean libmysqld.lib will support both embedded and remote server?

Thanks in advance.

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Sun Aug 05, 2018 2:25 pm
by nageswaragunupudi
I could use it to connect to both, view tables from both and update remote server from local tables. I did not test extensively. I do not know if it has all the functionality of the libmysql library. You may test and see.

Re: FWH 17.03 : Using FWMARIADB for Embedded Server

PostPosted: Mon Aug 06, 2018 10:50 am
by dutch
Thank you, Mr.Rao.