Sounds like you need to learn HTML. There are loads of books and online tutorials out there. Regarding uploading files, your ISP probably provides a file-upload facility, otherwise you could use FTP.
Trouble is, how long is a month? 28? 29? 30? 31 days? Even a year: 365 or 366 days? Weeks and days is the best you can reliably do, as far as I can see.
Sleidia, it wasn't a stupid question and you weren't bothering anybody. You asked for our advice and we gave it, which you're free to accept or reject. Any design that works acceptably well for you is perfectly valid, whether it conforms to supposed "best practice" or not. Best of luck with your...
I wouldn't hard-wire the languages into the database structure; it makes it difficult to add new languages, makes queries complicated, and violates relational principles.
In a situation like specifying translations for strings I'd use a translations table, with columns for (1) language code...
What I mean is, install a MySQL client program such as one of the GUI clients already mentioned, on your own computer. Using that client program you can execute queries on the remote database from the comfort of your computer, without having to use SSH. Assuming that your hosting company allows...
Another approach you might like to consider:
Install a MySQL client program on your computer. Edit the CSV file to produce an SQL command file. For example:
123 happy
456 christmas
becomes:
insert mytable
(id,message)
values
(123,'happy'),
(456,'christmas')
Connect the client to...
Just thinking, we haven't had a distro flame war for some time now; this would be great opportunity for one!
Seriously though, Pentode's help-me-decide link is a good one, go with it!
My instinct would be to assume that the IDE adopts whatever locale the OS is running; if you change the Windows locale to English, C++ Builder would turn to English. Have you tried that?
If you were running Linux, you could (as hvass said) simply use softlinks to link to files and directories on other volumes. I've never done that myself, but I see no reason why it wouldn't work. But of course you're running Windows, so that's no help to you.
That seems unnecessarily complicated. How about:
select * from Tbl_Members
group by MemberNr HAVING count(MemberNr)>1
order by MemberNr desc;
Or am I missing something?
I've no idea why you're getting that error but at least if you eliminate the extra layer that SSH imposes you're eliminating a source of possible error.
If you have the MySQL command-line client installed locally (which you probably haven't) you can use the connection command already given...
You shouldn't need to use ssh, it just adds another layer of complication. You could just connect directly to the database via a local command shell or GUI.
Sorry, I've been asleep. That looks like a bash (system command shell) error. I can't understand why you'd get that if you're safely inside the MySQL command shell, which you seem to be. Are you able to run simpler queries with no problem?
First you have to connect to the database in some way. On the command line it would be something like:
mysql -h myhostname -u myusername -p mypassword mydbname
That will bring you into the MySQL client shell where you can enter SQL commands and queries. The "mydbname" in the command specifies...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.