Tech
Webシステムプログラマーによる、ちょっとためになる(かもしれない)情報共有ブログ
 

【第22回】CodeIgniter(その2)

 
先週に続いて、今回もCodeIgniterのお話です。

今週は、データベースクラスについてです。

CodeIgniterで利用できるデータベースは、SQL Server、MySQL、Oracle、ODBC、
PostgreSQL、SQLiteです。




まずは、database.phpでデータベース設定をします。

/CodeIgniter/system/application/config/database.php

$active_group = "default";
$active_record = TRUE;

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "";
$db['default']['password'] = "";
$db['default']['database'] = "";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";


データベースの設定はデフォルトではこのようになっています。

環境に応じてユーザー名、パスワードなどを入れます。

$active_recordがtrueにすると、ActiveRecordが使えるようになります。

基本的なデータの取得方法はこのように書きます。

(例1:データの取得)
<?

class Example extends Contoroller{

    function index()
    {

        // データベースを初期化
        $this->load->database();

        // SQLクエリを実行する
        $query = $this->db->query('select id, name from exampleTable');

        // 結果を表示
        foreach( $query->result() as $row ){

             echo $row->id;
            echo $row->name;
        
        }

    }

}

(例2:データの挿入)
<?

class Example extends Contoroller{

    function index()
    {

        // データベースを初期化
        $this->load->database();

        // 登録するデータ
        $id = 1;
        $name = "さんぷる";

        $SQL = "insert into exampleTable ( id, name
                ) values (
                $this->db->escape($id),
                $this->db->escape($name)
                )";

        // SQLクエリを実行する
        $query = $this->db->query($SQL);

    }

}

もうひとつ、ActiveRecordを使った場合の書き方もあります。

(例3:データの取得:ActiveRecordを使った場合)
<?

class Example extends Contoroller{

    function index()
    {

        // データベースを初期化
        $this->load->database();

        // SQLの実行(select id, name from exampleTable)
        $this->db->select('id, name');
        $query = $this->db->get('exampleTable');

        // 結果を表示
        foreach( $query->result() as $row ){

             echo $row->id;
            echo $row->name;
       
        }

    }

}

(例4:データの挿入:ActiveRecordを使った場合)
<?

class Example extends Contoroller{

    function index()
    {

        // 登録するデータ
        $id = 1;
        $name = "さんぷる";

        // データベースを初期化
        $this->load->database();

        // SQLクエリを実行する( insert into exampleTable ( id, name ) values (
$id, $name) )
        $this->db->set('id', $id );
        $this->db->set('name', $name );
       
        $this->db->insert('exampleTable');

    }

}

ActiveRecordを使うと、SQL部分が短くなりました。

エスケープ処理もしてくれます。

ActiveRecordは使い方を覚えなければいけませんが、
データーベースに依存したSQLを書かなくてもよくなるところがメリットです。

では、このようなSQL文の場合はActiveRecordで書くことはできるのでしょうか?

select id, name, current_timestamp from exampleTable

3つめは現在の日時を取得するANSI標準の関数です。

では例3のSQLの実行部分を次のように変えてみます。

// SQLの実行
$this->db->select('id, name, current_timestamp');
$query = $this->db->get('exampleTable');

current_timestampのところがNULLになってしまいました。。。。

なので・・・current_timestamp関数のところは・・・

このように入れてあげます。

// SQLの実行
$this->db->select('id, name, current_timestamp()');
$query = $this->db->get('exampleTable');

MySQLでは、現在の時刻も取得できました。

()のない関数は、()をつけると取得できるようです。

whereやorder byが入った場合は、こんな感じで書きます。

$where = "a = 'hogehoge' and b = 2";
$this->db->where($where);
$this->db->order_by('a');
$query = $this->db->get('exampleTable');    // select * from exampleTable

where句を指定する方法はいろいろありますが、個人的には文字列を使った方法
で書いています。

先にwhereとorder_byの部分を書いて、その後にselect文、insert文、update文
にあたる部分を書きます。

複雑なSQL文になるとActiveRecordは実装しづらいですが、
それほど複雑なSQLを使わない場合は利用する価値はあると思います。

次回もCodeIgniterについて書きたいと思います。

トラックバック(0)

トラックバックURL: http://blog.promob.jp/mt/mt-tb.cgi/115

コメント(74)

| コメントする

long weblog you've lock up

Lovely website! I am loving it!! Will be back later to read some more. I am taking your feeds also

Impede the best bib site hither poker news.

In it something is. Earlier I thought differently, many thanks for the help in this question.

The next time I read a blog, I hope that it doesnt disappoint me as much as this one. I mean, I know it was my choice to read, but I actually thought youd have something interesting to say. All I hear is a bunch of whining about something that you could fix if you werent too busy looking for attention.

Howdy, I have followed you on twitter, followed you on facebook, around the discussion boards and now on your weblog ! No no am not stalking you, but this is a fantastic publish as usually quite really informative. Appear ahead to reading lost a lot more

I'm often excited to go to this weblog in the evenings.Please keep on churning out the content. It's really entertaining.

I join. It was and with me. We can communicate on this theme.

I’m not that much of a online reader to be honest but your blogs really nice, keep it up! I'll go ahead and bookmark your site to come back later on. Many thanks

It — is impossible.

Congratulations for posting such a useful weblog. Your blog isnt only informative as well as very artistic too. There normally are incredibly handful of individuals who can write not so simple articles that creatively. Continue the truly amazing work !!

I usually don’t post in Blogs but your blog forced me to, amazing work.. beautiful …

Excuse for that I interfere … here recently. But this theme is very close to me. I can help with the answer. Write in PM.

thanks for sharing your fantastic post,wish you have a good day.

Wow this can be a great resource.. I�m enjoying it.. good article

Hey ,I think your site is good! I found it on Bing, I will go back one day.

Between me and my husband we've owned more MP3 players over the years than I can count, including Sansas, iRivers, iPods (classic & touch), the Ibiza Rhapsody, etc. But, the last few years I've settled down to one line of players. Why? Because I was happy to discover how well-designed and fun to use the underappreciated (and widely mocked) Zunes are.

Super information in this post. Not sure about the theme you have. I do learn a lot each time I visit.

Utterly indited subject material , Really enjoyed studying.

Wow! Thank you! I continuously needed to write on my website something like that. Can I include a portion of your post to my site?

Attempt not torture.

Sometimes I get amazed of reading material like this.

Yes, in due time to answer, it is important

I am glad to be a visitant of this thoroughgoing weblog, thank you for this rare information!

It is remarkable, very valuable idea

Richietoon @168, you got me sussed mate.old slapper!

Without difficulty, the post is really the greatest on that precious topic. I harmonise with your conclusions and will thirstily look forward to your incoming updates. Simply just saying thanks definitely will not simply be enough, for the extraordinary lucidity in your writing. I will instantly grab your rss feed to stay abreast of any updates. Genuine work and also much success in your business endeavors!

A lot of these South Koreans make me sweat just watching them, they never stop running! The only problem I see is that they are naturally smaller than a European player.

Aw, this was a really quality post. In theory I'd like to write like this also - taking time and real effort to make a good article... but what can I say... I procrastinate alot and never seem to get anything done... Regards

Fuck second place. Saddam Hussein and Adolf Hitler finished in second place.

I've been reading a few posts and really and enjoy your writing. I'm just setting up my own blog and only hope that I can write as well and give the reader so significantly insight.

Do you have a spam issue on this website; I also am a blogger, and I was wanting to know your situation; we have created some nice procedures and we are looking to trade methods with other folks, please shoot me an e-mail if interested.

I wanted to follow along and allow you to know how , very much I liked discovering this blog today. I might consider it the honor to work at my workplace and be able to utilize the tips provided on your blog and also participate in visitors' opinions like this. Should a position of guest publisher become offered at your end, i highly recommend you let me know.

While all these store cards are included with the vehicle work with buy involving 10, 000, as well as home improvement financial loan for L12, 000, how many these kind of monthly payments to be developed every 4 weeks turned out to be extremely hard to deal with.

But, Mr. Treasurer, were just getting started. Two billion? Thats nothing. By the 41st day 15 days from now youll owe me 365,000 more pounds of rice than the 1,000 you owe me today, or over one trillion grains of rice.

America cinemas second golden age, that began with Bonnie and Clyde in 1967, was killed by Star Wars ten years later. It has never recovered.

【第22回】CodeIgniter(その2) - Tech [Friday] プロモバイルエンジニアブログ Great goods from you, man. I have understand your stuff previous to and you're just extremely excellent. I actually like what you've acquired here, really like what you're saying and the way in which you say it. You make it enjoyable and you still take care of to keep it smart. I cant wait to read much more 【第22回】CodeIgniter(その2) - Tech [Friday] プロモバイルエンジニアブログ again from you. Thanks For Share .

Assuming the game won't be Arena-like or even XFL-like, they won't meet condition a), which means they'll essentially have the money to get better players. Good luck with that.

Many thanks finding the time to talk about this approach, I am powerfully in it and thus fancy analyzing regarding this specific content. In case future, once you pull off competencies, might you thoughts and feelings producing your new wordpress blog with the even further info? This is used for people.

Dan on April 6th, 2009 at 12:36 pm:In an effort to establish the idea that there are universal concepts let us explore Plato's philosophy. Many of Plato's dialogues try to identify the nature or essence of some philosophically important notion be defining it. The “Euthyphro” revolves around a discussion of the question, “What is piety?” The central question of “The Republic” is, “What is justice?” The “Theaetetus” tries to define knowledge. The “Charmides” is concerned with moderation, and the “Laches” discusses valor. Plato denied that a notion, such a piety (reverence), could be defined simply by offering examples of it. Plato required a definition of a notion to express what is true of, and common to, all instances of that notion.

Nice one for the right to go over it, Personally i think truly with it and thus absolutely love understanding much more about this specific field. As long as promising, as you produce expertise, will you reactions modernizing ones own weblog by working with in addition insight? This is very a good choice for i am.

I agree with your 【第22回】CodeIgniter(その2) - Tech [Friday] プロモバイルエンジニアブログ, wonderful post.

I like Your Article about 【第22回】CodeIgniter(その2) - Tech [Friday] プロモバイルエンジニアブログ Perfect just what I was looking for! .

Appreciate spending some time to talk about it, Personally i think eagerly concerning it coupled with appreciate studying much more this situation issue. When potential, as soon as you gain professionalism, do you ever beliefs improving your trusty webpage together with even further advice? This is very a good choice for others.

Please shut down your forum, stop preaching ignorance, I cant stand the stupid. Just because you are dumber than a bosx of rocks do we all have to be retarded. You do know research, you make pronouncements for which you are obviously unqualified.

My four current favorites would have to be:

Absolutely fascinating! I love PBS!!!

We need brave men and women, at this point in history we have sissy congressmen who are afraid to go against a President , and a Speaker of the House and many other off the wall non-America loving leaders.

My questions are:1. Is there a “right way” to run? How can I avoid injuring myself? My feet? I2. I want to run a 5K this spring. Any idea where I can find events in Manhattan?

How about the Flying Talking Pig Flu (FTPF).

P.S. Watch Earthlings if you havent already , if you can stomach it !!!

Nan- brush up on your discussion skills and let go of the Yoda-style advices.

People need to get the animal rights laws changed.

Yee hawr, were gonna have ourselves a lil burning!

Generally I don't learn article on blogs, but I wish to say that this write-up very compelled me to take a look at and do it! Your writing taste has been surprised me. Thank you, very nice article.

Read any article about the defense and people will tell you how huge Ryan Clark is to the team. How do you explain it? No idea. But look at articles in the Trib or Post-Gazette last week and the week before and there are a few in there praising the relationship btw Troy and Ryan.

Appreciate your taking the time to talk about this specific, I am honestly about this coupled with adore looking over read more about doing this niche. However, if promising, whilst you realise abilities, you imagination adding your favorite blogging site with in addition help and advice? This can be very of great help for me personally.

I agree with your 【第22回】CodeIgniter(その2) - Tech [Friday] プロモバイルエンジニアブログ, superb post.

I emailed her music teacher earlier this evening asking for the name of the song (without mentioning the whorey dancer thing). . .will update when I receive answer.

birghtlight as someone who has had their identity stolen your attitude is really piss-poor. its not a small crime what he did. he destroyed the lives of many people, and getting your identity back is like pulling teeth.

Extremely well organized fundamentals and history of what the economy really means and the cause and effect within global commerce. The historic ebb and flow of trades of goods and/or monetary tokens is very well illustrated.

I agree with your 【第22回】CodeIgniter(その2) - Tech [Friday] プロモバイルエンジニアブログ, excellent post.

Good – I should definitely pronounce, impressed with your site. I had no trouble navigating through all the tabs as well as related information ended up being truly easy to do to access. I recently found what I hoped for before you know it at all. Quite unusual. Is likely to appreciate it for those who add forums or something, website theme . a tones way for your customer to communicate. Excellent task..

You guys are sooooo lucky the pictures are great and poor little Jamie and Austin has a black eye woooo wonder what happenedso excited cant wait till mondays episode.

I would rather have the #1 Seed. Im not a moral victory guy. Win the game and close out the season red freaking hot. They had a chance to set the tone and send a message.

This page seems to get a great deal of visitors. How do you promote it? It offers a nice individual spin on things. I guess having something useful or substantial to give info on is the most important factor.

Hey, / noticed this incredible movie site unintentionally although roaming over the resulting today, and moreover delighted i could do! I'm keen on the structure and as well , build colourings, however i should certainly point out that I’m attempting as you are the idea huge. I’m generating use of Shiira Any visitor, and in addition the h2 tags are not going to choice once and for all. Is found Alright inside Netscape 10 yet still.

Oh really well where is K-Leens legit win?? Oh yea thats right they dont have one.

You had fantastic good ideas here. I did a search on the subject and discovered almost all peoples will agree with your blog.

コメントする