open ssl在mips和arm下的交叉编译

open ssl在mips和arm下的交叉编译
===========================================================
作者: softwinder(http://softwinder.itpub.net)
发表于: 2004.12.07 17:19
分类: linux编程问题
出处: http://softwinder.itpub.net/post/1093/8918
—————————————————————

arm:
./Configure linux-elf-arm -DB_ENDIAN linux:’ arm-linux-gcc -mbig-endian’
make
值得注意的是,在arm交叉编译环境中,引用库的顺序为:-lssl -lcrypto,如果为 -lcrypto -lssl就会编译错误

mips:
./Configure linux-mips -DB_ENDIAN linux:’ mips-linux-gcc’
make

codeigniter的数据库操作

    —————————————————–
  • 链接数据库
  • ——-
  • $this->load->database();//手动连接数据库
  • //连接多数据库
  • $DB1 = $this->load->database(‘group_one’, TRUE);
  • $DB2 = $this->load->database(‘group_two’, TRUE);
  • —————————————————–
  • 查询
  • ——-
  • //参数绑定形式
  • $sql = “SELECT * FROM some_table WHERE id = ? AND status = ? AND author = ?”;
  • $this->db->query($sql, array(3, ‘live’, ‘Rick’));
  •  
  • //多结果标准查询
  • $query = $this->db->que[......]
  • 阅读全文