I am still using a VB6 program that accesses the FreeDB database using an ActiveX control.
Has anyone done anything in B4A to obtain data from the FreeDB system?
I am looking for a library that would pull the data into my (B4A) B4J app.
I don't know "FreeDB" but you can access any db by several methods (I use SQLite and MySql a lot - could be any other, too). See jRDC2 or maybe php or other methods.
I don't know "FreeDB" but you can access any db by several methods (I use SQLite and MySql a lot - could be any other, too). See jRDC2 or maybe php or other methods.
No … FreeDB is a specific database for looking up CD track information. I am looking for code that helps extract CD ID information that will be submitted to FreeDB to pull the data.
You will use NodeJs+express to make an API to comunicate with FreeDB and then is too easy to connect with B4A, B4i o B4j.
If not exist packege for for FreeDb on npm, then you will create one.
Adodb npm package will help you to start, this package use vbscript to comunicate with local db and send to NodeJs
You will use NodeJs+express to make an API to comunicate with FreeDB and then is too easy to connect with B4A, B4i o B4j.
If not exist packege for for FreeDb on npm, then you will create one.
Adodb npm package will help you to start, this package use vbscript to comunicate with local db and send to NodeJs
I'm afraid NodeJs means nothing to me at all. I do not want to write an API, I would really like to find an existing one that I can somehow connect to B4x (probably B4J).
The first thing that has to happen is to extract the CD ID from the disc. My VB6 ActiveX control did that, as well as handling all the communication and response with the FreeDB database. I'm really looking for a library that has all that built in.