hi everybody, i have purchased arduino uno r3 in south africa , don't have stores sell isp programmer, , make things worse no sparkfun or adafruit products sold in city don't have many options (not helpful know). now here's dilemma, constructing 2 barebones arduino's based on rbbb (really bare bones board) design (which don't here either resorted constructing them myself). hold of blank atmega328-pu chips not pico power version! so in desperate need of bootloading these chips uno bootloader, aware (after reading through forums) of fact signatures atmega328-pu , atmega328p-pu different. have followed several tutorials using arduino isp programmer no success. followed tutorial http://www.gammon.com.au/forum/?id=11635 hoping work atmega328-pu assuming works atmega328p-pu chip. i tried altering avrdude.conf , boards.txt suggested in thread http://arduino.cc/forum/index.php?topic=58670.0 : avrdude.conf code: [select] #------------------------------------...
hello, so here's route.php: code: select all function componentbuildroute(&$query) { $segments = array(); if (isset($query['view'])) { $segments[] = $query['view']; unset($query['view']); } if(isset($query['id'])) { $segments[] = $query['id']; unset($query['id']); } return $segments; } function componentparseroute($segments) { $vars = array(); $vars['view'] = $segments[0]; if (count($segments) > 1) { $vars['id'] = $segments[1]; } return $vars; } and works good! the url gets like: /menu-item-name/item/id but how can use alias? tried digging com_content didn't see use of alias there, how did make automatical...
i have id (primary key) set bigint in sql server. have query following: where whateverid = <cfqueryparam cfsqltype="cf_sql_integer" value="#url.id#"> i got invalid data type it. tried: where whateverid = <cfqueryparam cfsqltype="cf_sql_bigint" value="#url.id#"> i still got invalid data type it. tried: where whateverid = <cfqueryparam cfsqltype="cf_sql_int" value="#url.id#"> and worked. the weird thing cf_sql_int not listed being accepted: http://www.adobe.com/livedocs/coldfusion/5.0/cfml_reference/tags79.htm can explain me. > whateverid = <cfqueryparam cfsqltype="cf_sql_bigint" value="#url.id#"> what value of #url.id#? had no problems either using cf8. > weird thing cf_sql_int not listed being accepted: iirc, when pass in invalid sql type cf uses default: cf_sql_char, accepts anything. ms sql implicit convert() right type , why works. More discussions in Data...
Comments
Post a Comment