Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [Question] VB.NET and Databases.

[Question] VB.NET and Databases.

Posts 1–6 of 6 · Page 1 of 1
Erinador
Erinador
[Question] VB.NET and Databases.
So I have a database attached to my program which contains names.

But what I need to know is, how would I make the database update if theirs new names added to the database.

Example:

Computer A has my program but doesn't have a correct database. How would I make it so that Computer A can get an updated version from the Main computer.

Thanks in advance.
#1 · 16y ago
NextGen1
NextGen1
host the database on the server, use a connection string.

How you maintain the database is a matter of logic and what type of database you are using (3rd time today, awesome, I am glad to see that people are starting to use databases)

What type of database are you using SQL Server, MySQl , Access, Entity...

This matters somewhat
#2 · 16y ago
Erinador
Erinador
I'm going to start with Access as I find it very easy to work with
#3 · 16y ago
NextGen1
NextGen1
When you add a database the connection string will be

Code:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;User Id=admin;Password=;
where mydatabase is the name of your database.

You need to edit the data string so the source points to the hosting account instead of the local drive

You can do that in the database properties.

Note: When you create the database be sure to use a username and password for security, and set them in the above string

Example of database string in use

Code:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=http://mywebdomain.com\db\mydatabase.mdb;User Id=myusername;Password=mypassword;
Databases will update dynamically by checking the datastring for location then updating it's information "on the fly"



#4 · edited 16y ago · 16y ago
Erinador
Erinador
That's just the info I needed!

Thanks for the quick help!
#5 · edited 16y ago · 16y ago
NextGen1
NextGen1
Not a problem, It's what I hang around for
#6 · 16y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • 2 questions: VB 2008 and Instant health addressBy markfracasso11 in WarRock - International Hacks
    17Last post 18y ago
  • question about vb6 and memoryBy quebech4ck in Visual Basic Programming
    6Last post 18y ago
  • [Question] G7A Gas, and the other orangey oneBy AgentElmo in Combat Arms Hacks & Cheats
    20Last post 18y ago
  • Question About Legify and An's HackBy _-Blazin-_ in Combat Arms Hacks & Cheats
    2Last post 17y ago
  • (QuestioN) about DLL and a hack that was madeBy Zen in Programming Tutorial Requests
    0Last post 17y ago

Tags for this Thread

None