SOLUTION....
File search - foreach
How to make multiple computers work on the same BAS database???
-
hi, i have 3pc with same LAN. i need those pc working(read and write data) on 1 database. pls help me out! thanks

-
Just install Mysql on one pc, create DB and access it from other pcs in the network.
-
@morpheus93 but my sql to dificult to use. i need db orginal of BAS. Can i???
-
@loclan6879 said in How to make multiple computers work on the same BAS database???:
@morpheus93 but my sql to dificult to use. i need db orginal of BAS. Can i???
Using a database in any software is a common practice in development. I don't see any difficulties here.
In any case, you don't have many options except to set up a database server on your local network, like MongoDB, MySQL, or something similar, and then connect your script to that database server.
Another approach is to implement web app with an API for CRUD operations, such as Swagger, and create a simple BAS module to manipulate account data during registration or similar tasks. I use this method very often because it simplifies BAS coding, as all logic is implemented in the web app.