![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello. I'm sorry in advance if this is the wrong group to post my questions. If so, please point me in the right direction. I'm just getting around to tinkering with MySql after years of completely ignoring it while I learned programming and network administration. For some reason, I just wanted to avoid putting yet another language in my head. But now, I've been tinkering with an idea to store data and retrieve it on a website, and have looked around for existing solutions (didn't want to make a custom program if something already existed) and realized that the data could get big. In that case, probably MySql is best. I installed MySql to a machine in my office (sqlserver1) and I can access it from web1 so I know the connections are ready. I then came home and installed the MySql workbench 5.2 CE. That's when I realized how complicated it could be. I had hoped that Workbench would make things easy, but I guess I thought it would have a simple interface like MS Access does. Like I said, I'm very new to data bases and in fact I only just got the concept of "relational db's". So try not to laugh too much when I think in terms of a toy such as MS Access. :-) Is there any tool out there like Work Bench that has a simpler interface? Something a little more basic so I can get on with learning about MySql without having to spend so much time learning the navigation structure of the UI that's supposed to make it easier? Hate to say it, but at first glance of the UI in Workbench, I think anyone in my shoes would be overwhelmed enough to almost immediately give up. I thank you for your time and any advise. And as I said, if this is the wrong place, please be so kind as to point me in the right direction. -Dr.X (not a real doctor, don't even play one on tv ![]() |
#3
| |||
| |||
|
|
Hello. I'm sorry in advance if this is the wrong group to post my questions. If so, please point me in the right direction. I'm just getting around to tinkering with MySql after years of completely ignoring it while I learned programming and network administration. ... |

|
I think in terms of a toy such as MS Access. :-) |

#4
| |||
| |||
|
|
On 20-03-2011 19:33, Dr.X wrote: Hello. I'm sorry in advance if this is the wrong group to post my questions. If so, please point me in the right direction. I'm just getting around to tinkering with MySql after years of completely ignoring it while I learned programming and network administration. ... For start i would recommend you to learn SQL i.e. http://www.sqlcourse.com, or Google for another SQL - course ![]() http://lmgtfy.com/?q=mysql+courses+online I think in terms of a toy such as MS Access. :-) I think you can access a MySQL with MS Access, when using ODBC, but i've never tried, because i never needed that ![]() |
#5
| ||||||||
| ||||||||
|
|
Dr.X wrote: Hello. I'm sorry in advance if this is the wrong group to post my questions. If so, please point me in the right direction. I'm just getting around to tinkering with MySql after years of completely ignoring it while I learned programming and network administration. For some reason, I just wanted to avoid putting yet another language in my head. But now, I've been tinkering with an idea to store data and retrieve it on a website, and have looked around for existing solutions (didn't want to make a custom program if something already existed) and realized that the data could get big. In that case, probably MySql is best. I installed MySql to a machine in my office (sqlserver1) and I can access it from web1 so I know the connections are ready. I then came home and installed the MySql workbench 5.2 CE. That's when I realized how complicated it could be. I had hoped that Workbench would make things easy, but I guess I thought it would have a simple interface like MS Access does. Like I said, I'm very new to data bases and in fact I only just got the concept of "relational db's". So try not to laugh too much when I think in terms of a toy such as MS Access. :-) Is there any tool out there like Work Bench that has a simpler interface? Something a little more basic so I can get on with learning about MySql without having to spend so much time learning the navigation structure of the UI that's supposed to make it easier? Hate to say it, but at first glance of the UI in Workbench, I think anyone in my shoes would be overwhelmed enough to almost immediately give up. I thank you for your time and any advise. And as I said, if this is the wrong place, please be so kind as to point me in the right direction. -Dr.X (not a real doctor, don't even play one on tv ![]() To be honest if you know programming and network admin you shouldnt have a problem. But what yo have to realise is that mysql is a system tool, not a suer application. If you install - say - php and phpmyadmin you will at least be able to administer the thing via a GUI of sorts. I use webmin my self. |
|
BUT the question must be asked as to how you intend to get data in and out of the database? both really require some form of forms design or programming in another language - C, PHP, perl, python or the like. |
|
Mysql is a very good chassis indeed, but it comes without a dashboard or controls. Access is a completely rubbish chassis, but a very pretty dashboard and controls. |
|
Also, is it not possible for access to use a mysql DBMS? I thiught there was a way. |
|
I have to say I abandoned Access because although easy things were very easy, nothing else was. |
|
Mysql easy things are hard, but really hard things are only a little bit harder. I suggest you say more about exactly what you are trying to do, and see what tools may help smooth the path, but really, its never going to be an ice rink.. |
| V |
| V |
#6
| ||||||||||
| ||||||||||
|
|
On Sun, 20 Mar 2011 19:12:55 +0000, The Natural Philosopher tnp (AT) invalid (DOT) invalid> wrote: Dr.X wrote: I have 3 people needing 3 seperate databases for their own use (and one for me to play with). The 3 are completely unrelated. One needs to tack customers in a standard meathod (ie keep contact info, invoicing and such much like all the examples found around the net.) The other two want to display info that they had entered in their db, but display it on their web site. One is using an apachie web server and scripts using PHP, the other is using IIS with ASP. I believe ASP is sufficient to query the sql server (already know apachi'es capabilities). The two later would like stand alone entry forms inaccessable from the web (a desk top method of entering new data to the db), while the first wants NO web access as they do not have a need for it (good idea, less surface area to attack security wize). |
|
I believe I can accomplish all the desktop UI stuff in just ANSI C. The web part will have to fall to my partner. You CAN but why bother? |
|
My real problem is to learn protocols and sql language to intigrate it into the C code. It just seemed to me the Work Bench software should have had some way to build a simple "dashbord" so you could pass it on to the end users. Also, for the sake of programming, I telneted to the server and discovered it's not like all the other protocols I've written for. I'll have to find a programming group to guide me on this one. I think I'll need something like... C Code UI | V some sql translator/encryptor?, maybe a DLL file |
|
| V sql server Just so I can communicate with the sql server from my program. Eh.. details. |
|
--- this can be a lan or wan, or indeed same machine link. v |
| v |
| v |
| v |
|
Another reply in this thread told me to checck out a coarse. Looks good and i'll do exactly that. |
|
I thank you for your reply. -Dr.X |
#7
| |||
| |||
|
|
Hello. I'm sorry in advance if this is the wrong group to post my questions. If so, please point me in the right direction. I'm just getting around to tinkering with MySql after years of completely ignoring it while I learned programming and network administration. For some reason, I just wanted to avoid putting yet another language in my head. But now, I've been tinkering with an idea to store data and retrieve it on a website, and have looked around for existing solutions (didn't want to make a custom program if something already existed) and realized that the data could get big. In that case, probably MySql is best. I installed MySql to a machine in my office (sqlserver1) and I can access it from web1 so I know the connections are ready. I then came home and installed the MySql workbench 5.2 CE. That's when I realized how complicated it could be. I had hoped that Workbench would make things easy, but I guess I thought it would have a simple interface like MS Access does. Like I said, I'm very new to data bases and in fact I only just got the concept of "relational db's". So try not to laugh too much when I think in terms of a toy such as MS Access. :-) Is there any tool out there like Work Bench that has a simpler interface? Something a little more basic so I can get on with learning about MySql without having to spend so much time learning the navigation structure of the UI that's supposed to make it easier? Hate to say it, but at first glance of the UI in Workbench, I think anyone in my shoes would be overwhelmed enough to almost immediately give up. I thank you for your time and any advise. And as I said, if this is the wrong place, please be so kind as to point me in the right direction. -Dr.X (not a real doctor, don't even play one on tv ![]() |

#8
| ||||||
| ||||||
|
|
On 3/20/2011 2:33 PM, Dr.X wrote: Hello. I'm sorry in advance if this is the wrong group to post my questions. If so, please point me in the right direction. I'm just getting around to tinkering with MySql after years of completely ignoring it while I learned programming and network administration. For some reason, I just wanted to avoid putting yet another language in my head. But now, I've been tinkering with an idea to store data and retrieve it on a website, and have looked around for existing solutions (didn't want to make a custom program if something already existed) and realized that the data could get big. In that case, probably MySql is best. I installed MySql to a machine in my office (sqlserver1) and I can access it from web1 so I know the connections are ready. I then came home and installed the MySql workbench 5.2 CE. That's when I realized how complicated it could be. I had hoped that Workbench would make things easy, but I guess I thought it would have a simple interface like MS Access does. Like I said, I'm very new to data bases and in fact I only just got the concept of "relational db's". So try not to laugh too much when I think in terms of a toy such as MS Access. :-) Is there any tool out there like Work Bench that has a simpler interface? Something a little more basic so I can get on with learning about MySql without having to spend so much time learning the navigation structure of the UI that's supposed to make it easier? Hate to say it, but at first glance of the UI in Workbench, I think anyone in my shoes would be overwhelmed enough to almost immediately give up. I thank you for your time and any advise. And as I said, if this is the wrong place, please be so kind as to point me in the right direction. -Dr.X (not a real doctor, don't even play one on tv ![]() First of all, this is a perfect newsgroup for your question. There is no better ![]() |
|
Next, ignore TNP. He's a well-known troll with no real programming experience. |
|
I agree with Luuk - you really need to learn SQL. Simple stuff is not that hard (although, like with any language, advanced SQL can become pretty complicated) and you'll be much better off in the long run. |
|
You can use ACCESS to interface to MySQL, but the results are somewhat less than satisfactory. You can only use those features which are common to both, and cannot take advantage of the strengths of either. |
|
You can do everything you want from the MySQL CLI; it has the added advantage that it can accept an ASCII file of SQL statements. With it, you can do about anything you want. |
|
The workbench is OK for some thing, but I really don't use it much. I find I can do almost anything the workbench does using the CLI, only faster (but then I've been writing SQL for well over 20 years, so it's pretty much second nature to me). There are other tools such as PHPMyAdmin which make some things easier, but it really doesn't help you in writing your own SQL (which you will need to do). I use it for some admin functions and to test some SQL statements, but that's about all. I don't use it as a regular maintenance tool, for instance. Some suggestion; I hope they meet your needs. |
#9
| |||
| |||
|
|
On 3/20/2011 9:45 PM, Jerry Stuckle wrote: Next, ignore TNP. He's a well-known troll with no real programming experience. Well, troll or not, he did have some good advice on what to look for. I'll keep an eye on him anyways :-D |
#10
| |||
| |||
|
|
My security concern was more about exposing the sql port. I know there are always security risks when you expose any port, but for some services it is necessary (eg; pop, smtp). In this case, the only service running will be MySQL. How does the big boys do it? Do they only use MySQL as a back end so no one can directly connect to it? |
![]() |
| Thread Tools | |
| Display Modes | |
| |