Jump to content

Which type of SQL database are you talking about? Microsoft SQL Server, MariaDB, MySQL, …?

 

An what exactly do you mean by blinking? The cursor at the command prompt, or what? Because normally that's a background service, not something that runs interactively in the foreground.

Remember to either quote or @mention others, so they are notified of your reply

Link to post
Share on other sites

1 minute ago, Eigenvektor said:

Which type of SQL database are you talking about? Microsoft SQL Server, MariaDB, MySQL, …?

 

An what exactly do you mean by blinking? The cursor at the command prompt, or what? Because normally that's a background service, not something that runs interactively in the foreground.

my sql

Link to post
Share on other sites

2 minutes ago, Eigenvektor said:

Which type of SQL database are you talking about? Microsoft SQL Server, MariaDB, MySQL, …?

 

An what exactly do you mean by blinking? The cursor at the command prompt, or what? Because normally that's a background service, not something that runs interactively in the foreground.

i mean the command prompt opens for a second and when i type password it just goes away and if i try to reopen it just not work

 

Link to post
Share on other sites

2 minutes ago, Nigo said:

i mean the command prompt opens for a second and when i type password it just goes away and if i try to reopen it just not work

As I said, this is normally a background service, not something you run at the command prompt. What command prompt link are you using and which command did you enter?

 

Normally you install MySQL, start its service and then use something like MySQL Workbench to connect to it to create databases and so on. You can manage databases from the command prompt, but that's not as easy as using a GUI tool.

Remember to either quote or @mention others, so they are notified of your reply

Link to post
Share on other sites

Easier just to install it with XAMPP in windows.

Ryzen 5700g @ 4.4ghz all cores | Asrock B550M Steel Legend | 3060 | 2x 16gb Micron E 2666 @ 4200mhz cl16 | 500gb WD SN750 | 12 TB HDD | Deepcool Gammax 400 w/ 2 delta 4000rpm push pull | Antec Neo Eco Zen 500w

Link to post
Share on other sites

I'd suggest downloading MariaDB, which is the open source version of MySQL, same thing : https://downloads.mariadb.org/

 

Normally, you configure it as a service in Windows. 

if you want to use the command line tools to create users or import databases, then you open a command prompt and go to the folder where the command line tools are and then run your commands.  

 

I'd also suggest HeidiSQL : https://www.heidisql.com/

It's a free application that allows you to manage users, databases, create databases and tables and indexes, import and export data, run queries, all in a nice interface, less hassle with command line.

 

 

Link to post
Share on other sites

2 hours ago, Nigo said:

i think mysql command client something

well can you send me the link for mysql database for windows 10 64x

I'm a bit confused, on the one hand you're saying you're using the command line client, which would mean you have MySQL installed already, on the other hand you're asking for a download link. Do you already have it installed or not?

 

The command line client is used to connect to an existing database on a previously installed database server, it is not used to install MySQL. In any case, you can find the downloads for MySQL here: https://dev.mysql.com/downloads/installer/

 

(edit: Don't be fooled that is says 32 bit. The installer is 32 bit, but it does install the 64 bit version… 🙄)

 

If you haven't installed it already, I'd second @mariushm's recommendation of using MariaDB instead. While both of them are (or have) open source versions, the advantage of MariaDB is that it does not come with any Oracle strings attached. It is compatible to MySQL in terms of API.

Remember to either quote or @mention others, so they are notified of your reply

Link to post
Share on other sites

Guest
This topic is now closed to further replies.

×