<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="open[qoob] http://qoob.xero.nu" -->
<rss version="2.0">
    <channel>
        <title>the website of xero harrison</title>
        <description>xero, xero harrison, harrison, nu, x-e.ro, whois.x-e.ro, blog.x-e.ro, code.x-e.ro, lab.x-e.ro, img.x-e.ro, etc.x-e.ro, feeds.x-e.ro, fontvir.us, fontvirus, font, fonts, git, portfolio, program, programming, code, coding, codes, codez, dev, develop, developer, qoob, open qoob, openqoob, framework, code, api, lab, laboratory, experiment, experiments, demo, netart, net art, unixporn, unix porn, unixp0rn, unixpr0n, images, photos, etc, random</description>
        <link>https://blog.x-e.ro</link>
        <lastBuildDate>Sat, 30 May 2026 14:13:09 -0400</lastBuildDate>
        <generator>open[qoob]</generator>
        <item>
            <title>mysql string replacements</title>
            <link>https://blog.x-e.ro/mysql_string_replacements</link>
            <description><![CDATA[<p>sometimes you find the need to do mass string replacements in your mysql/maria databases. here's how i do it:</p>
<pre><code>UPDATE your_table
SET your_field = REPLACE(your_field, 'old_value', 'new_value')
WHERE your_field LIKE '%old_value%'</code></pre>]]></description>
            <author>xero harrison</author>
            <pubDate>Fri, 11 Jan 2013 08:51:33 -0500</pubDate>
        </item>
        <item>
            <title>SQL select into statement</title>
            <link>https://blog.x-e.ro/sql_select_into_statement</link>
            <description><![CDATA[<div>
<p>have you ever had a database table that you needed to clone? you can use any number of convoluted methods such as: manually coping and pasting rows in the database manager, running lots of queries/stored procedures, or writing a script to cycle though each row copying data from one table to the next. all of these methods are inferior and far more complex then the method i'm going to show you.</p>
<p><strong>introducing the select into query...</strong><br />this method should be used if the table you want to clone exists, but the new table douse not. the select into query will create the new table for you, copying all the column names, properties, and data. if you want to make an exact clone of the table you can select * into the new table. but if you only want a few specific columns, you can declare only the ones you want. the syntax is elegantly simple...</p>
<pre class="brush: sql">SELECT *
INTO [new-table]
FROM [old-table]</pre>
</div>]]></description>
            <author>xero harrison</author>
            <pubDate>Fri, 14 Aug 2009 11:14:00 -0400</pubDate>
        </item>
        <item>
            <title>inline SQL statements </title>
            <link>https://blog.x-e.ro/inline_sql_statements</link>
            <description><![CDATA[<p>the world of database programming can be a dark and treacherous journey. when you first set out, your quest seems manageable. but as time progresses your start to realize you need more queries, more tables, etc, etc, to achieve your goal. well today i’m going teach you a little trick that might help you need one less stored procedure then you thought...</p>
<p>sometimes it’s true, you actually do need two queries to get the job done. but other times you can circumvent this by using something like a "join" or "inner join" query to merge two tables together and pull your results from both.</p>
<p>but the optimizer in you says that still isn’t enough...</p>]]></description>
            <author>xero harrison</author>
            <pubDate>Sun, 26 Oct 2008 19:25:00 -0400</pubDate>
        </item>
        <item>
            <title>asp.net pure code database connection</title>
            <link>https://blog.x-e.ro/asp_net_pure_code_database_connection</link>
            <description><![CDATA[<p>visual studio 2005 has a tool for connecting to a database called a "sqlDataSource". while this tool works, i find myself wanting to create the connection and build or execute stored procedures within my own C# code. this tutorial will show you how to connect to a sql database 3 different ways in asp.net</p>
<p>the first thing is creating a connection with your database. if you understand how connection strings are built, write your own other wise will can use the visual studio database tool to do that for us.</p>
<p><img title="configure database" src="http://blog.x-e.ro/ui/img/blog/uploads/db-config.gif" alt="configure database" width="525" height="71" /></p>]]></description>
            <author>xero harrison</author>
            <pubDate>Wed, 22 Aug 2007 09:26:00 -0400</pubDate>
        </item>
    </channel>
</rss>
