MacLochlainns Weblog

Michael McLaughlin's Technical Blog

Site Admin

@How to comment on blog

with 5 comments

Leaving a comment is pretty straightforward but if you’d like to leave a code sample the plug-in requires a couple tricks. Questions are welcome too, but I can’t promise to answer them all and the forums are the best place to post them. You must enter the comment in native XHTML with a <pre lang=”language”>code</pre>. Language codes are: sql, plsql, php, c, java, et cetera.

If you put links in the comment, it typically gets cast to the spam filter and deleted because I don’t have time to sort them out.

Written by maclochlainn

February 24th, 2009 at 4:15 pm

Posted in Uncategorized

5 Responses to '@How to comment on blog'

Subscribe to comments with RSS or TrackBack to '@How to comment on blog'.

  1. Somebody inquired about writing for the site. I didn’t anticipate that beyond the idea of comments and dialog through comments.

    When I update and move TechTinker.com, it will open some part of the site to community contribution.

    maclochlainn

    1 Mar 09 at 5:13 pm

  2. What are ” flinkeunctions”. On your blog about getters and setters, you say “getters are flinkeunctions” I know you meant functions, but most word processors wouldn’t allow that word. Perhaps a copywriter would help before you publish things. I appreciate all you have done, but your textbook has more misspelled words and typos than any textbook I have ever seen. If you need a good copywriter to help you, I am available.

    Robert

    17 Jul 20 at 11:13 pm

  3. Robert, I found that typo in the blog. It’s fixed. As to the book, most of those occur during what’s called proof editing. They’re often introduced by macros that help format the text. Then, they’re missed in proof edit because you only have two-three days to turn around multiple chapters. I try to keep an errata on the books to help with those. Thanks.

    maclochlainn

    22 Jul 20 at 10:31 am

  4. I have followed connection process to MySQL with Powershell as you have described.

    connection fail with following error
    1. Verified and Added Path
    ‘C:\Program Files (x86)\MySQL\Connector NET 8.0\Assemblies\v4.5.2\MySql.Data.dll’

    2. $Connection = [MySql.Data.MySqlClient.MySqlConnection]@{ConnectionString=’server=LocalHost;uid=root;pwd=Redhill480!;database=test_db’}

    $Connection.Open()

    Error:
    Unable to find type [MySql.Data.MySqlClient.MySqlConnection].
    At line:1 char:16

    Haresh Patel

    19 Feb 23 at 11:03 am

  5. You have to install the Connector NET 8.0 libraries, which aren’t installed by default. Alternatively, use the following setup that’s a bit easier. Define a Windows DSN (Data Service Name):

    # Define a ODBC DSN connection string.
    $ConnectionString = 'DSN=MySQLODBC2'

    You can find a complete code example here.

    maclochlainn

    24 Mar 23 at 1:19 am

Leave a Reply