Symfony Doctrine help Programming Web Development by nodoso …;myPlanes = Doctrine_Query::create() ->from('FsPlane p') ->leftJoin('p.FsPlanetech t') ->leftJoin('t.FsPicture') ->where('player_id = ?', $id) ->execute… passing value and get value Programming Web Development by ayuscomeyh … inner join tok gabung 2table bg attribute yg same//kalo leftjoin xkisah kosg or xd value) $sql="SELECT r.*, c… one form in two database Programming Software Development by problematic:) … = New Recordset Set RS = cn.Execute("select * from weddingrecords leftjoin payment on weddingrecords.NameofBride = payment.Bride where TransactionNumber '" &… Re: one form in two database Programming Software Development by problematic:) well there's a debug on it. it says : syntax error in FROM clause then it highlights this: [CODE]Set RS = cn.Execute("select * from weddingrecords leftjoin payment on weddingrecords.NameofBride = payment.Bride where TransactionNumber '" & tn.Text & "'")[/CODE] query for employee attendance Programming Databases by Danuuu … Invalid column name 'Device_Person_id' how to solve this problem is leftjoin or with inout column dbo.tempdevicelogs data is columnname Data… join tables Programming Web Development by Trabelsi ….name' ), Field::inst( 'personnel.surname' ), Field::inst( 'personnel.grade' ) ) ->leftJoin( 'personnel', 'personnel.id', '=', 'liste_service_log.id_personnel' ) ->process($_POST) ->json… Re: join tables Programming Web Development by Gideon_1 …'t actually tell, because I don't know if the leftjoin and process methods used by your plugin are defined to… Re: join tables Programming Web Development by Trabelsi ….name' ), Field::inst( 'personnel.surname' ), Field::inst( 'personnel.grade' ) ) ->leftJoin( 'personnel', 'personnel.id', '=', 'liste_service_log.id_personnel' ) but it doesn't work… Re: dotProject Open Source project management Programming Web Development by Wraithmanilian …;addQuery('b.user_username'); $q->addTable('tasks', 'a'); $q->leftJoin('users', 'b', 'a.task_owner = b.user_id'); $q->addWhere('task_percent_complete…('a.*, b.resource_name'); $q->addTable('resource_tasks', 'a'); $q->leftJoin('resources', 'b', 'a.resource_id = b.resource_id'); $q->addWhere('a… Re: Join on a view without the view Programming Databases by mr_vodka … order of the joins by putting the budget to Fund LEFTJOIN first but it didnt help. Currently, when I am using… the simple LEFTJOIN with the view it will result in 15 records. If… Re: one form in two database Programming Software Development by AndreRet Update will be something like - [CODE]RS.AddNew RS!MyFieldNameHere = Text1.Text 'and so on.... RS.Update[/CODE] Delete something like this - [CODE]RS.Delete 'Use bookmark etc for a specific record etc...[/CODE] Search - [CODE]RS.Open "SELECT * FROM YourTable WHERE TheFieldName LIKE '" & Text1.Text & "'", cn, … Re: one form in two database Programming Software Development by problematic:) Is this code would update in the two database? Re: one form in two database Programming Software Development by AndreRet Your execute statement looks fine so, yes, it should update both. If not, let me know as well as where the error occured or if the fields in payment table is empty. Re: one form in two database Programming Software Development by AndreRet Mmmm, I normally don't use join statements. I like to do the longer route, but I never get errors. This is what I would've done - [CODE]Dim RS As ADODB.Recordset Dim rsPayment As ADODB.Recordset Set RS = New ADODB.Recordset Set rsPayment = New ADODB.Recordset RS.Open "SELECT * FROM weddingrecords WHERE TransactionNumber = " & &… Re: one form in two database Programming Software Development by problematic:) well some of it has errors but maybe I'll go try finding them myself. thanks a lot. you're making my name sounds like I don't :) Re: one form in two database Programming Software Development by AndreRet Fantastic! Happy Coding!:) Re: one form in two database Programming Software Development by Mark Alonzo16 hello, Re: one form in two database Programming Software Development by Mark Alonzo16 use two connection strings when you want to use two databases..then call the connection string that you will going to use. Re: query for employee attendance Programming Databases by ChrisHunter Your naming conventions aren't clear. It's considered bad practise to use use special charactor like _ to separate the words within a field name. Instead simply capitalise the first letter of each word (i.e. DevicePersonId and not Device_Person_id). Also when you give a table an alias within an SQL statement it should be something meaningful. For…